form.html: <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> </head> <body> <form action="welcome.php" method="post"> 名字: <input type="text" name="fname"> 年齡: <input type="text" name="age"> <input type="submit" value="提交"> </form> </body> </html>
welcome.php
歡迎<?php echo $_POST["fname"]; ?>!<br>
你的年齡是<?php echo $_POST[ "age"]; ?> ?歲。
我就是我,看自己都上火
另外要注意的其他問題是,在開啟form.html時一定要透過輸入網(wǎng)址的方式打開,不然welcome.php會顯示為純程式碼頁面
兩個檔案要在同一個目錄下,例如
page/form.html
page/welcome.php