image.png
image.png
HTML5表单与PHP交互方法[把地址复制到到html里的action里(http://localhost/MyService/Service.php)]:
image.png
image.png
image.png
image.png
image.png
image.png
image.png
image.png
image.png
image.png
image.png
image.png
image.png
image.png
- 18.HTML5表单与PHP交互.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>18.HTML5表单与PHP交互</title>
</head>
<body>
<form action="http://localhost/MyService/Service.php" method="POST">
用户名: <input type="text" name="name">
密码: <input type="password" name="password">
<br/>
<input type="submit" value="提交">
</form>
</body>
</html>
- Service.php
<?php
// echo 'hello world!';
echo "用户名:" .$_POST['name']."<br>密码:".$_POST['password'];