<head>
<meta http-equiv="Content-Type" content="text/html charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<form action="" method="get">
Name: <input type="text" name="name" />
<input type="submit" />
</form>
<?php
$name=$_GET['name']
echo "欢迎你:".$name
?>
</body>
</html>
通过表单,例如:
<form action="form_action.php method="get"><p>First name: <input type="text" name="fname" /></p>
<p>Last name: <input type="text" name="lname" /></p>
<input type="submit" value="Submit" />
</form>
其中的input 中的 name 就可以被PHP接收