<?php
mysql_connect("localhost","root");
@mysql_select_db("test") or die("Unable to open Database");
$query = "select unique_id,scrn_name,scrn_date from screenshots order by unique_id desc limit 5";
$result = mysql_query($query);
/Dynamically generate drop-down list/
while(list($unique_id,$scrn_name,$scrn_date) = mysql_fetch_row($result)) {
printf "<a href=\ttestpage3.php?unique_id=$unique_id>$scrn_name</a> $scrn_date<br>\n";
}
mysql_close();
?>
it gives me an parse error at line 63 which is the printf line, after i added the quote.