Date: 10/11/01
- Next message: Beau Lebens: "RE: [PHP-DB] Multiple INSERT using for() into a MySQL database"
- Previous message: Jean-Christian Imbeault: "RE: [PHP-DB] newbie: how to connect to a remote DB"
- Next in thread: Beau Lebens: "RE: [PHP-DB] Multiple INSERT using for() into a MySQL database"
- Maybe reply: Beau Lebens: "RE: [PHP-DB] Multiple INSERT using for() into a MySQL database"
- Maybe reply: Jean-Christian Imbeault: "RE: [PHP-DB] Multiple INSERT using for() into a MySQL database"
- Maybe reply: Dobromir Velev: "Re: [PHP-DB] Multiple INSERT using for() into a MySQL database"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hi
Novice question time.
I am attempting to do a multiple INSERT by creating 11 records in a MySQL
database using a for() control structure.
The code snippet is as follows
for($i=1, $i<12, $i=$i+1) {;
$query2 = "INSERT INTO
ausPermisions(permView,permEdit,permAdd,permDelete,userID,modID)
VALUES('N','N','N','N','$id','$i')";
$result2 = mysql_query($query2) or die("doh!");
};
the $id is already defined and yes the modID is supposed to correspond to
the value of $i
I keep on getting the ... parse error, expecting `';'' ... error
Anyhow, I am a beginner with PHP and was wondering wondering why \this
doesnt work. If I'm not doing this the right way any advice etc would be
great.
Thanks
Peter
-- 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>
- Next message: Beau Lebens: "RE: [PHP-DB] Multiple INSERT using for() into a MySQL database"
- Previous message: Jean-Christian Imbeault: "RE: [PHP-DB] newbie: how to connect to a remote DB"
- Next in thread: Beau Lebens: "RE: [PHP-DB] Multiple INSERT using for() into a MySQL database"
- Maybe reply: Beau Lebens: "RE: [PHP-DB] Multiple INSERT using for() into a MySQL database"
- Maybe reply: Jean-Christian Imbeault: "RE: [PHP-DB] Multiple INSERT using for() into a MySQL database"
- Maybe reply: Dobromir Velev: "Re: [PHP-DB] Multiple INSERT using for() into a MySQL database"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

