Instead of 

      echo htmlspecialchars( stripslashes($row["$i"]));

use


      echo htmlspecialchars( stripslashes($row[0]));

In fact , if you increase $i you increase the column thus , in the first
cycle you see col 0 , in the second col 1 ....

for more information visit

http://www.php.net/manual/en/function.mysql-fetch-row.php

Have fun
Andera Forghieri





---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to