我想编写脚本,具有对多个插入查询的功能。让我更好地解释一下。
我有一个quantityhtml形式的输入。而且我有MySQL查询要插入registered user到表中。所以我想让我的函数为“数量”次插入此查询。
quantity
registered user
mysql_query("INSERT INTO `pxlot` (realname,email,address,phone,status,regtime,ip) VALUES ('$realname','$email','$address','$phone','0','$dateTime','$ip')") or die (mysql_error()); // Inserts the user.
例如要插入3次。有什么建议么?
INSERT INTO table (a,b) VALUES (1,2), (2,3), (3,4);
http://dev.mysql.com/doc/refman/5.5/zh- CN/insert.html