this works, but it doesn't like to retrieve the data, the intention of this
is that it just returns all the links...
but it loves to return errors...

===========================================
<?php
$link = mysql_connect($path,$log,$pass) OR DIE("can't connect");
mysql_select_db("blackstars", $link) or die( "can't select db");

$query = "SELECT * FROM persoon";
$result = mysql_query($query);
for ($count = 1; $row = mysql_fetch_object ($result) ; ++$count)


 echo "$count : $row->voornaam , $row->achternaam <br>";
 }
?>
===================================================





-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to