Hello,
I was wondering how to print a blank line in PHP. I also was wondering why the code below will not print out just the values, like Roger etc, instead of Array([Name])=>Roger.
<?
require_once('mySql.php');
$mysql=new mySql;
$mysql->query("select * from Rot");
while ($row = $mysql->get_assoc()) {
print_r($row);
}
?>






Bookmarks