我正在使用MySQL查詢將多個記錄插入到表中。 在我的網址中,我得到了我輸入的所有記錄,但在數據庫中它只更新了我的最後一條記錄。我在這裏使用onclick函數來添加新的表格行。任何幫助。 這裏是我的代碼如何從PHP中的URL中獲取具有相同名稱的多個參數並將所有記錄插入表中
if (isset($_GET['submit']))
{
require_once("shine_class.php");
$s = new shine;
$s->connection();
$date1 = date_default_timezone_set('Asia/Kolkata');
$date1= time() ;
$newdate1 = date("d-m-Y", $date1);
for ($i=0; $i < count($_GET['finished_product_name']); $i++)
{
$product =$_GET['finished_product_name'];
$material = $_GET['material_name'];
$quantity = $_GET['product_quantity'];
// mysql_query("INSERT INTO material_used (product_name, material_name, product_quantity, date) VALUES ('$a', '$b', '$c','$newdate1')") or die(mysql_error());
$insert ="insert into material_used set `product_name` = '".$product."', `material_name` = '".$material."', `product_quantity` = '".$quantity."',`date` = '".$newdate1."' ";
$select = mysql_query($insert) or die(mysql_error());
}
}
插入數據請寫你的代碼在這裏 – Sadikhasan
哪裏是你的查詢,..如果你可以在這裏貼上您的查詢 – jmail
是的,我已經在這裏貼我的查詢,... – Ash