HTML5表单的创建及与PHP的交互
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‘];
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。