用html编写一个计算商品单价总价的代码,可以录入商品名称,商品单价,商品数量
时间: 2023-03-12 22:33:11 浏览: 314
jQuery商品数量加减并计算总价代码.zip
可以使用如下代码:<html>
<head>
<title>计算商品总价</title>
</head>
<body>
<form action="">
请输入商品名称:<input type="text" name="productName" /><br/>
请输入商品单价:<input type="text" name="price" /><br/>
请输入商品数量:<input type="text" name="quantity" /><br/>
<input type="submit" value="计算" />
</form>
<?php
if (isset($_GET['productName']) && isset($_GET['price']) && isset($_GET['quantity'])) {
$totalPrice = $_GET['price'] * $_GET['quantity'];
echo '<p>您购买的', $_GET['productName'], '的总价为', $totalPrice, '元。</p>';
}
?>
</body>
</html>
阅读全文