码迷,mamicode.com
首页 > Web开发 > 详细

HTML5表单的创建及与PHP的交互

时间:2014-12-15 23:42:34      阅读:389      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   os   sp   for   on   bs   cti   

Html5表单

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
<form>
    用户名:
    <input type="text">
    <br/>
    密 码:
    <input type="password">
    <br/>
    你喜欢的水果有?
    苹果<input type="checkbox"><!--复选框-->
 西红柿<input type="checkbox">
    香蕉<input type="checkbox">
    <br/>
    请你选择性别:
    男<input type="radio" name="sex"><!--单选框-->
 女<input type="radio" name="sex">
    <br/>
    <select><!--下拉列表框-->
 <option>www.baidu.com</option>
        <option>www.qq.com</option>
        <option>www.google.com</option>
    </select>
    <input type="button" value="提交">
    <input type="button" value="确定">
</form>
<textarea cols="30" rows="30">请在此填写个人信息</textarea>
</body>
</html>

与PHP的交互

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>表单与PHP交互</title>
</head>
<body>
<form action="http://localhost/MyServer/service.php" method="post">
    用户名:<input type="text" name="name">
    密  码:<input type="password" name="password">
    <br/>
    <input type="submit" value="提交">
</form>
</body>
</html>
<?php
echo "username:".$_POST[‘name‘]."<br/>password:".$_POST[‘password‘];


HTML5表单的创建及与PHP的交互

标签:http   io   ar   os   sp   for   on   bs   cti   

原文地址:http://my.oschina.net/hejunsen/blog/356402

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!