MySQL Database Php

Its syntax is: array mysql_fetch_row() (int result)
@mysql_connect("localhost", "root","") or die("Could not connect to MySQL server!");
@mysql_select_db("mydatabase") or die("Could not select database!");
$query = "SELECT * FROM mytable";
$result = mysql_query($query);
print "\n";
print "\n\n\n";
while (list($id, $title, $myvalue) = mysql_fetch_row($result)) :
   print "\n";
   print "\n\n\n";
   print "\n";
endwhile;
print "
IDTitleMyValue
$id$title$myvalue
";
mysql_close();
?>