php提交表单后出现http500异常
程序员文章站
2022-04-20 11:32:59
...
php提交表单后出现http500错误
新手,刚接触php,麻烦各位大神了
html部分
Popcorn sales
php程序
Process the popcorn.html form
$unpop=$_post["unpop"];
$caramel=$_post["caramel"];
$caramelnut=$_post["caramelnut"];
$toffeynut=$_post["toffeynut"];
$name=$_post["name"];
$street=$_post["street"];
$city=$_post["city"];
$payment=$_post["payment"];
if($unpop=="") $unpop=0;
if($caramel=="") $caramel=0;
if($caramelnut=="") $caramelnut=0;
if($toffeynut=="") $toffeynut=0;
$unpop_cost=3.0*$unpop;
$caramel_cost=3.5*$caramel;
$caramelnut_cost=4.5*$caramelnut;
$toffeynut_cost=5.0*$toffeynut;
$total_price=$unpop_cost+$caramel_cost+$caramelnut_cost+$toffeynut_cost;
$total_items=$unpop+$caramel+$caramelnut+$toffeynut;
?>
print("$name
$street
$city
");
?>
新手,刚接触php,麻烦各位大神了
html部分
php程序
$unpop=$_post["unpop"];
$caramel=$_post["caramel"];
$caramelnut=$_post["caramelnut"];
$toffeynut=$_post["toffeynut"];
$name=$_post["name"];
$street=$_post["street"];
$city=$_post["city"];
$payment=$_post["payment"];
if($unpop=="") $unpop=0;
if($caramel=="") $caramel=0;
if($caramelnut=="") $caramelnut=0;
if($toffeynut=="") $toffeynut=0;
$unpop_cost=3.0*$unpop;
$caramel_cost=3.5*$caramel;
$caramelnut_cost=4.5*$caramelnut;
$toffeynut_cost=5.0*$toffeynut;
$total_price=$unpop_cost+$caramel_cost+$caramelnut_cost+$toffeynut_cost;
$total_items=$unpop+$caramel+$caramelnut+$toffeynut;
?>
Customer:
print("$name
$street
$city
");
?>
Product | Unit Price | Quantity Ordered | Item Cost |
---|---|---|---|
Unpopped Popcorn | $3:00 | ||
Caramel Popcorn | $3:50 | ||
Caramel Nut Popcorn | $4:50 | ||
Toffey Nut Popcorn | $5:00 |
上一篇: Vue.js学习之计算属性
推荐阅读
-
PHP表单提交后引号前自动加反斜杠的原因及三种办法关闭php魔术引号
-
PHP提交表单失败后如何保留已经填写的信息
-
表单提交错误后返回内容消失问题的解决方法(PHP网站)
-
高分——php中form页面的action,点击提交后,出现空白页面,在1台服务器正常,在另外一台服务器只出现空白
-
PHP表单提交后引号前自动加反斜杠的原因及三种办法关闭php魔术引号_PHP
-
php-点击按钮后,怎么将form表单中的数据提交到弹窗中显示?
-
高分――php中form页面的action,点击提交后,出现空白页面,在1台服务器正常,在另外一台服务器只出现空白
-
php基础教程--表单验证(必填、提交后数据保留)
-
php中form表单的值用submit提交后,如何在下个页面取出来
-
php-点击按钮后,怎么将form表单中的数据提交到弹窗中显示?
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论