Sebastian
12-14-2002, 06:08 PM
trying to get the latest articles from my database and it's returning: Fatal error: Call to undefined function: sql_fetch_row() in /path/to/home
i tried mysql_fetch_row and still gives me an error, any ideas?
<?php
$dbhostname= "localhost";
$dbusername= "";
$dbpassword= "";
$dbdatabase= "";
$table ="db_stories";
$db = @mysql_connect($dbhostname,$dbusername,$dbpassword );
$result = @mysql_query("SELECT sid, title, comments, counter from $table order by sid DESC limit 0,5", $db);
while(list($sid, $title, $comtotal, $counter) = sql_fetch_row($result, $db)) {
}
?>
i tried mysql_fetch_row and still gives me an error, any ideas?
<?php
$dbhostname= "localhost";
$dbusername= "";
$dbpassword= "";
$dbdatabase= "";
$table ="db_stories";
$db = @mysql_connect($dbhostname,$dbusername,$dbpassword );
$result = @mysql_query("SELECT sid, title, comments, counter from $table order by sid DESC limit 0,5", $db);
while(list($sid, $title, $comtotal, $counter) = sql_fetch_row($result, $db)) {
}
?>