Hi,
I'm trying to display data taken from a MySQL DataBase in HTML. But, it doens't seem to be working.
This is the code:
<html xmlns="http://www.w3.org/1999/xhtml">
<?php
$con = mysql_connect("localhost","root");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}...