form.html: <html> <head> <meta charset="utf-8"> <title>php中文网(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時一定要透過輸入網址的方式打開,不然welcome.php會顯示為純程式碼頁面
兩個檔案要在同一個目錄下,例如
page/form.html
page/welcome.php