Home Article Practice PHP充值活动

PHP充值活动

2023-09-11 11:55  views:420  source:心丶慌了    

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>充值活动</title>
</head>
<body><form action="充值活动.php" method="post">
预存300元话费,返50充值卡<br>
预存500元话费,返100充值卡<br>
预存1000元话费,返300充值卡<br>
<input type="text" name="fz"><br>
<input type="submit" name="" value="充值">
</form>
</body>
</html>
<?php
$fz = $_POST['fz'];
if($fz < 300){
echo "充值话费少于300,没有返值";
}
else if($fz >= 300 && $fz<500){
echo"感谢充值,返50充值卡!";
}
else if($fz >= 500 && $fz < 1000){
echo "感谢充值,返100充值卡!";
}else{
echo "感谢充值,返300充值卡!";
}
?>



Disclaimer: The above articles are added by users themselves and are only for typing and communication purposes. They do not represent the views of this website, and this website does not assume any legal responsibility. This statement is hereby made! If there is any infringement of your rights, please contact us promptly to delete it.

字符:    改为:
去打字就可以设置个性皮肤啦!(O ^ ~ ^ O)