This article mainly introduces the interaction between PHP and Web pages. It has a certain reference value. Now I share it with everyone. Friends in need can refer to it
1.form form default situation The way to submit data is the get method.
2. The predefined variables used by PHP scripts to process form data are $_GET, $_POST (case sensitive)
Code example (Pay special attention to adding the array when adding the checkbox attribute name)
##simpleTest.html<!DOCTYPE html><html><head><meta charset="UTF-8"><title>Insert title here</title></head><body><form action="simpleForm.php" method="post"> 用户名:<input type="text" name="username"><br> 密码:<input type="text" name="password"><br> <!-- 复选框 --> 学过的编程语言是:<br> <input type="checkbox" name="language[]" value="PHP">php <input type="checkbox" name="language[]" value="java">java <input type="checkbox" name="language[]" value="C#">C# <input type="checkbox" name="language[]" value="C++">C++<br> <input type="submit" value="提交" ></form></body></html>
<?php if(!empty($_POST["username"])){ if($_POST["username"]=="zhangsan"&&$_POST["password"]=="123"){ echo "欢迎您:".$_POST["username"]."<br/>"; echo "学过的编程语言:"; foreach ($_POST["language"] as $value){ echo $value; } }else { echo "用户名密码错误"; } } ?>
Introduction to installing xhprof for performance analysis in PHP 7.1
The above is the detailed content of Interaction between PHP and Web pages. For more information, please follow other related articles on the PHP Chinese website!