can someone tell me what im doing wrong?
mysql_connect("localhost","goc2d_Audio","*****") or die ("Cant connect to db");
mysql_select_db("goc2d_main") or die ("Cant select db");
$result = mysql_query('SELECT * FROM `news`') or exit(mysql_error());
while ($row = mysql_fetch_array($result, MYSQL_NUM)) {
printf ('
<table width="95%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td>%s</td>
</tr>
<tr>
<td>%s</td>
</tr>
</table>
', $row[0], $row[1]);
}
mysql_free_result($result);
mysql_close();
Warning: printf() [function.printf]: Too few arguments in /home/goc2d/public_html/delta/index.php on line 38
it works fine if i leave the table as <table>