爲什麼我的表單不工作,爲什麼沒有錯誤顯示?當我點擊提交按鈕什麼也沒有發生,這裏是我的代碼:表單提交不起作用當我點擊按鈕
<?php
$list_of_product=$p->loadSearchProduct($searchkey);
foreach ($list_of_product as $product) {
echo "<tr>"
.'<form id ="myForm" action = "InsertOrders.php" method = "POST">'
."<td>".$product->prodname."</td>"
."<td>".$product->price."</td>"
."<td>".$product->total." "."Piece(s)"."</td>"
."<td>".$product->remaining_stock." "."Piece(s)"."</td>"
."<td>".$product->sold_stock."</td>"
."<td>"."<input class='form-control' name='qty' type='text' required/>"."</td>"
."<td>"."<button type='submit' id='sub' class='btn btn-primary'>"."<b>Add to List</b>"."</button>"."</td>"
."</form>"
."</tr>";
}
?>
我已經試過這個確切的代碼與幾種形式,並提交自己的形式(使用自定義類來表示產品) – feareoc
爲每個提交按鈕添加一個唯一的名稱可以幫助後端區分哪種形式是提交,即''並在後端'isset($ _ POST ['prodname'])' – feareoc
我不會從按鈕獲得值... –