i'm an intermediate level programer, but i'm just beginning with PHP\MySQL...
here's the basic layout
$Query = "Select * from conf_ymo ORDER DESC LIMIT 2)";
$Result = mysql_db_query($DBName, $Query, $Link);
while ($Row = mysql_fetch_array($Result)) {
$News = "<p class=caption>$Row[date] $Row[title]</p><br><p class=body>$Row[content]</p><br>";
}
I know this is amature but my problem is that the MySQL keeps booting the request as an error on the while loop line. I've read all a ton of forums and i just can't see my error. All the variable inside the mysql_db_query command work. I've got other queries which run & work on this page.