I have this following code
?><p><p><br> <?php
$getnews = mysql_query("select * from news ORDER BY id DESC");
while($r=mysql_fetch_array($getnews)){
extract($r);
echo("<b>$title on $date<BR><BR>$news</b>");
it used to work. so when i put in the admin panel i had to change my code around. I thought i left this part of the code intact but apparently i moved something around and now it errors at the
mysql_query