RE: [PHP-DB] Multiple INSERT using for() into a MySQL database From: Jean-Christian Imbeault (jean_christian <email protected>)
Date: 10/12/01

And also you have some "," where you really want ";".

>for($i=1, $i<12, $i=$i+1) {;

should be:

for($i=1; $i<12; $i=$i+1) {

Jc

_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: php-db-unsubscribe <email protected>
For additional commands, e-mail: php-db-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>