In this week, we learn about how to connecting the database server with the browser. The example we take is from w3school. After that we enter the data based on our database. First we need to create a table in php, purpose to show a simple interface to present the database. The following is the code to present the database <!doctype html> <html> <head> <meta charset="utf-8"> <title>Untitled Document</title> <style> #customers { font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; border-collapse: collapse; width: 100%; } #customers td, #customers th { border: 1px solid #ddd; padding: 8px; } #customers tr:nth-child(even){background-color: #f2f2f2;} #customers tr:hover {background-color: #ddd;} #customers th { padding-top: 12px; padding-bottom: 12px; text-align: left; background-color: #4...