欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php提交表单后出现http500异常

程序员文章站 2022-04-20 11:32:59
...
php提交表单后出现http500错误
php提交表单后出现http500异常
新手,刚接触php,麻烦各位大神了
html部分


Popcorn sales



Welcome to here!















Buyer's Name:
Street Adress:
City,State,Zip:




























Product Price Quantity
Unpopped Popcorn(1 1b.) $3.00
Caramel Popcorn $3.50
Caramel Nut Popcorn(1 1b.) $4.50
Toffey Nut Popcorn(1 1b.) $5.00


Payment Method



Visa

Master Card

Discover

Check










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;
?>

Customer:



print("$name
$street
$city
");
?>
































php提交表单后出现http500异常

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频


网友评论

文明上网理性发言,请遵守 新闻评论服务协议

我要评论
  • php提交表单后出现http500异常
  • 专题推荐

    作者信息
    php提交表单后出现http500异常

    认证0级讲师

    推荐视频教程
  • php提交表单后出现http500异常javascript初级视频教程
  • php提交表单后出现http500异常jquery 基础视频教程
  • 视频教程分类
    Order Information
    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