首先编写表单页面orderform.html,用post方法请求服务端脚本文件:processorder.php

orderform.html:

<!DOCTYPE html>
<html>
<head lang="zh_CN">
<meta charset="UTF-8">
<title>订单页面</title>
</head>
<body>
<h2>Jason的购物清单</h2>
<form action="processorder.php" method="post">
<label>男装:</label><input type="text" name="cloths"/>
<label>鞋子:</label><input type="text" name="shoes"/>
<label>眼镜:</label><input type="text" name="glasses"/>
<input type="submit" value="提交">
</form>
</body>
</html>



processorder.php:

<!DOCTYPE html>
<html>
<head lang="zh_CN">
<meta charset="UTF-8">
<title>订单结果</title>
</head>
<body>
<h1>Jason的购物车</h1>
<h2>订单结果</h2>
<?php
$cloths=$_POST['cloths'];
$shoes=$_POST['shoes'];
$glasses=$_POST['glasses'];
echo '<p>订单提交中时间:';
//设置时区
date_default_timezone_set('Asia/Shanghai');
//按指定格式输出数据
echo date('Y-m-d H:i');
echo '</p>';
echo '<p>您的详细购物清单是:</p>';
echo $cloths.'件男装<br/>';
echo $shoes.'双鞋子<br/>';
echo $glasses.'副眼镜';
?>
</body>
</html>

最新文章

  1. Rxjava异常处理
  2. servlet学习笔记_4
  3. C++ Windows进程管理
  4. caffe中的props
  5. 洛谷P1017 进制转换
  6. WCF Restful JQuery 跨域解决方法
  7. GridView--scroolview嵌套listview和gridview
  8. vnextcn
  9. Cocos2D-x权威指南: CCNode类方法:
  10. Nexus 刷机
  11. 母版页中ContentPlaceHolder 控件的作用
  12. android利用jdk制作签名
  13. smm框架整合实现登录功能
  14. IOS 命令行工具开发
  15. breakthroughs in statistics | 统计学历史
  16. [转帖]在VMware ESXi服务器上配置NAT上网 需要学习一下。
  17. Kali linux 试用:dnsenum
  18. mysqldump备份脚本---待完善
  19. Codeforces Round #358 (Div. 2) E. Alyona and Triangles 随机化
  20. Java学习之路(六):集合

热门文章

  1. Android自动化测试Uiautomator--UiCollection接口简介
  2. 03004_Web开发
  3. goland 快键键整理及注册
  4. 【C#】重写和重载的区别
  5. 【bzoj2597】[Wc2007]剪刀石头布 动态加边费用流
  6. [COI2007] Patrik 音乐会的等待 (单调栈,模拟)
  7. jQuery事件委托之Safari失效的解决办法--摘抄
  8. 标准C程序设计七---00
  9. substring用法
  10. 让Mac OS X下的终端像Linux那样拥有丰富多彩的颜色显示