ok, i fixed that a quote needed to be added some where else, BUT NOW when i try to add this code into my exsiting code it says unexcpected t else.. the whole code its
mysql_select_db("revscreenshots");
$result = mysql_query("select * from articles WHERE id='$screen_id'") or die(mysql_error());
while ($row = mysql_fetch_object($result)) {
print"<h3><u>Screenshots</u></h3>";
print"<A HREF=\"http://www.flashstand.com/images/screenshots/{$row->name}\"><IMG HEIGHT=50 WIDTH=50 SRC=\"A HREF=\"http://www.flashstand.com/images/screenshots/{$row->name}\"></A>";
print"<center><h3><u>Options</u></h3><img src=\"http://www.flashstand.com/images/print.gif\"><a href=\"http://www.flashstand.com/printable.php?type=review&id=$id\">Printable Version</a> | <a href=\"http://www.flashstand.com/reviews/index.php\">Go back to reviews.</a>";
}
else
{
echo "<center>Sorry, this review doesnt exsist!</center>";
}