![這裡寫圖片描述](http://www. php.cn/
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>H5表格提交</title></head><body> <form action="http://localhost/Myservice/newfile.php" method="get"> 用户名:<input type="text" name="name"> 密码: <input type="text" name="password"> <br/> <input type="submit" value="提交"> </form></body></html>
<?phpecho "用户名:".$_GET['name']."<br/>密码:".$_GET['password'];