美好的一天
我很感激我在这个问题上的一些专业知识。
假设我们在假设的情况下有以下变量:
$uom = (either "PLT" or "CRT")
$prow = item ID in cart (starts from 1 and goes up depending on how many items)
$quantity = quantity of each item
$Name = item name
$quantityplt = new variable for PLT quantity
$quantitycrt = new variable for CRT quantity
从网站上的购物车购物系统获取每个产品的此信息。因此,一旦用户将项目添加到购物车,就会为他们选择的购物车中的每个项目显示该信息。
我有两个文本输入,需要显示所有项目的total_quantity:取决于,以确定$ uom是否为" CRT"或" PLT"。
<input type="text" id="plt_sum" readonly/>
<input type="text" id="crt_sum" readonly/>
现在,我需要根据$ uom计算$ quantity。
然后必须在&#34;#plt_sum&#34;中显示值。或&#34;#crt_sum&#34; ...
我对使用循环没有信心所以我不知道如何:
<?php
foreach($prow){
if($uom=="PLT"){
$quantityplt value == (perform $quantity addition WHERE $uom is "PLT");
echo $quantityplt (in the #plt_sum text input);
}
elseif($uom=="CRT"){
$quantitycrt value == (perform $quantity addition WHERE $uom is "CRT");
echo $quantitycrt (in the #crt_sum text input);
}
}
?>
我希望这片php完全没有意义。我意识到我的语法,其他一切都很可能是错误的。我还是很陌生,每天都在学习。
感谢您的阅读,感谢您的帮助。