编写一个PHP网页,计算购买商品的价格
时间: 2024-10-19 19:10:59 浏览: 7
PHP编写购物车源代码含数据库截图
3星 · 编辑精心推荐
在PHP中编写一个简单的网页来计算购买商品的价格,你可以创建一个HTML表单,然后通过PHP脚本来处理表单提交并进行价格计算。以下是一个基础示例:
首先,创建一个名为`calculate_price.php`的文件,内容如下:
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>计算商品价格</title>
</head>
<body>
<form method="post" action="">
<label for="quantity">购买数量:</label>
<input type="number" id="quantity" name="quantity"><br>
<label for="price_per_item">单价(元):</label>
<input type="number" id="price_per_item" name="price_per_item"><br>
<input type="submit" value="计算总金额">
</form>
<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$quantity = $_POST['quantity'];
$price_per_item = $_POST['price_per_item'];
$total_price = $quantity * $price_per_item;
echo "<p>总价: " . number_format($total_price, 2, '.', ',') . " 元</p>";
}
?>
</body>
</html>
```
当用户填写数量和单价后,点击“计算总金额”按钮,表单数据会被发送到同一个页面(因为action为空),然后PHP脚本将读取这些值,并计算总价,最后显示在页面上。
阅读全文