this code:
<html>
<head>
<title>php</title>
</head>
<body>
<h1>Show Database </h1>
<?
//make the database connection
$conn = mysql_connect("localhost", "clocky_time", "********");
mysql_select_db("clocky_clock", $conn);
//create a query
$sql = "SELECT * FROM clock_clock";
$result =...