注:php是嵌套在html里面使用的,本文仅是商品打折小程序的代码
效果图:


代码:
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<meta charset="UTF-8">
<title>宗波尘客php代码演示P17</title>
</head>
<body>
<form method="post" action="1.php">
请输入商品折扣价:<input type="text" name="Original_price" value="500"/>
折扣:
<select name="discount">
<option>九折</option>
<option>八折</option>
<option>七折</option>
<option>六折</option>
<option>五折</option>
</select>
<input type="submit" value="计算"/>
</form>
<?php
$Original_price=$_POST['Original_price'];
$discount=$_POST['discount'];
switch ($discount){
case"九折":$discount=0.9;
break;
case"八折":$discount=0.8;
break;
case"七折":$discount=0.7;
break;
case"六折":$discount=0.6;
break;
case"五折":$discount=0.5;
break;
default :$discount=1.0;
break;
}
$Current_price= $Original_price * $discount;
echo "商品促销后价格是:".$Current_price."元";
?>
</body>
</html>代码说明:
①
<!-- To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the template in the editor. -->
这是一段编辑软件自带的注释内容,注释内容仅是说明,无作用,借鉴代码时可以省略!
②
action="1.php"
大家借鉴代码时,这个1.php一定要改成自己这个代码文件的名称,例如“index.php”
③如果大家读不懂这串代码,可以联系站长免费讲解这段代码