Friday, 15 August 2014

mysql - Most simple way to make an multiple INSERT on PHP -



mysql - Most simple way to make an multiple INSERT on PHP -

i have code.

elseif ($numerodeprocesos == 4) { $upd2= "insert juan (ciudadh) values ('$ciudadh')"; $upd3= "insert juan (ciudadh) values ('$ciudadh')"; $upd4= "insert juan (ciudadh) values ('$ciudadh')"; $upd5= "insert juan (ciudadh) values ('$ciudadh')"; $upd6= "insert juan (ciudadh) values ('$ciudadh')"; mysql_query($upd2)or die( mysql_error() ); mysql_query($upd3)or die( mysql_error() ); mysql_query($upd4)or die( mysql_error() ); mysql_query($upd5)or die( mysql_error() ); mysql_query($upd6)or die( mysql_error() ); }

but, simple way that? mean possyble in 1 single mysql_query?

thanks in advance help

this single insert statement inserts multiple rows:

insert juan (ciudadh) values ('$ciudadh'), ('$ciudadh'), ('$ciudadh'), ('$ciudadh');

see also: insert syntax

php mysql

No comments:

Post a Comment