Home > Backend Development > PHP Tutorial > 这个界面如何做

这个界面如何做

WBOY
Release: 2016-06-13 10:14:11
Original
975 people have browsed it

这个界面怎么做?
我想把页面做成下面的效果,页面所有信息都提交到同一个php文件。
这个怎么做比较好?我是把整个页面做成一个form,还是一个person+一个提交做成一个form?
如果只有一个form,在php中怎么得到所有的person信息呢?

person1---------------------------------------
姓名: 证件类型:
性别: 证件号码:
房间:

person2---------------------------------------
姓名: 证件类型:
性别: 证件号码:
房间:

person3---------------------------------------
姓名: 证件类型:
性别: 证件号码:
房间:
   
总押金: 预住天数:

  提交按钮


------解决方案--------------------
当然是放在一个表单中啊,通过不同的name属性值就能进行区分。
------解决方案--------------------

HTML code
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>无标题文档</title>
Copy after login
person=$i?>---------------------------------------
姓名: 证件类型:
性别: 证件号码:
房间:
总押金: 预住天数:

------解决方案--------------------
PHP code
<?phpprint_r ($_POST);?>
Copy after login
person1---------------------------------------
姓名
性别
房间
person2---------------------------------------
姓名
性别
房间
person3---------------------------------------
姓名
性别
房间

------解决方案--------------------
可用post接收form信息
PHP code
<?phpif (!empty($_POST)){    print_r($_POST);}?>
Copy after login
person=$i?>---------------------------------------
姓名: 证件类型:
性别: 证件号码:
房间:
总押金: 预住天数:
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template