< ? php $link = mysqli_connect("localhost", "root", "", "Zip_Code.db"); if ($link == = false) { die("ERROR: Could not connect. ".mysqli_connect_error()); } $sql = "SELECT * FROM zipof"; if ($res = mysqli_query($link, $sql)) { if (mysqli_num_rows($res) > 0) { echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; while ($row = mysqli_fetch_array($res)) { echo ""; echo ""; echo ""; echo ""; echo ""; } echo "
CityStateZip
".$row['City']."".$row['State']."".$row['Zip]."
"; mysqli_free_result($res); } else { echo "No matching records are found."; } } else { echo "ERROR: Could not able to execute $sql. ".mysqli_error($link); } mysqli_close($link); ? >