任何人都可以幫忙嗎?我的代碼似乎並沒有存儲在我的代碼產品id的值看看,我也從另一個表產品ID未儲存在數據庫中
<?php
include("Connection.php");
$dTime = time();
$myValue = $_REQUEST['dValue'];
echo "<p>
The time is: {$dTime}<br/>
The choice is {$myValue}
</p>
";
$sql = "Select ID from product where NAME = '$myValue'";
$result = mysql_query($sql);
while ($row = mysql_fetch_assoc($result))
$pid=$row["PRODUCT_ID"];
$sql2 = "INSERT INTO `starbucks`.`order_details` (
`ID` ,
`ORDER_ID` ,
`PRODUCT_ID` ,
`QTY`
)
VALUES (
NULL , '', '$pid', '1'
)";
$result2 = mysql_query($sql2);
?>
更新代碼
我希望你不是編碼星巴克東西:d –
你看到屏幕上的ID在頁面後跑? –
我沒有看到任何ID,也沒有我不是星巴克的代碼,它是星巴克的副本。爲我的項目 –