Ver originalmysql_connect("localhost", "root", "") or die("Could not connect: " . mysql_error());
Ver original$result = mysql_query("SELECT * from my_table"); while ($row = mysql_fetch_assoc($result)) { print_r($row); }