Is this legal?
$string1= "INSERT INTO....;";
$string1 .= "INSERT INTO....;";
$string1 .= "INSERT INTO....;";
mysql_query($string1) or die(mysql_error());
|
|
|
|
|
|
|
For what it's worth, and depending on if you're inserting the same data into the same tables, it's much better to insert multiple values with the one insert e.g.
|
||
|
|
|
|
No. They are separate queries, and must be called as such. |
||
|
|
|
|
No, You can insert multiple rows like this:
|
||
|
|
|
|
In general, that's valid SQL since each statement ends with a semicolon, but PHP doesn't allow you to send more than one query at a time, in order to protect against SQL injection attacks that might exploit a poorly written script. You can still use a syntax like:
|
||
|
|