我想编写脚本,具有对多个插入查询的功能。让我更好地解释一下。
我有一个quantityhtml形式的输入。而且我有MySQL查询要插入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次。有什么建议么?