首頁  >  問答  >  主體

提交表單,跳轉不成功,404.想詢問一下是哪裡配置錯誤了嗎 ?初學者用到PhpStorm,沒有配置

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"]; ?>  歲。

400°眼镜的沙子400°眼镜的沙子1939 天前1103

全部回覆(4)我來回復

  • 王林

    王林2019-08-20 17:51:55

    另外要注意的其他問題是,在開啟form.html時一定要透過輸入網址的方式打開,不然welcome.php會顯示為純程式碼頁面

    回覆
    0
  • 400°眼镜的沙子

    http://localhost/Projects/welcome.php The requested URL /Projects/welcome.php was not found on this server. Apache/2.4.23 (Win64) PHP/7.0.10 Server at localhost Port 80 大概是這樣的頁面顯示

    400°眼镜的沙子 · 2019-08-23 17:29:28
  • kanglecheng

    kanglecheng2019-07-19 14:41:15

    兩個檔案要在同一個目錄下,例如
    page/form.html
    page/welcome.php

    回覆
    0
  • 400°眼镜的沙子

    在一個資料夾下的

    400°眼镜的沙子 · 2019-08-23 17:10:01
  • 取消回覆