>  Q&A  >  본문

양식을 제출했는데 점프가 실패했습니다. 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일 전1104

모든 응답(4)나는 대답할 것이다

  • 王林

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

    주의해야 할 또 다른 문제는 form.html을 열 때 URL을 입력하여 열어야 한다는 것입니다. 그렇지 않으면 Welcome.php가 순수 코드 페이지로 표시됩니다

    회신하다
    0
  • 400°眼镜的沙子

    http://localhost/Projects/welcome.php 요청한 URL /Projects/welcome.php를 이 서버에서 찾을 수 없습니다. Apache/2.4.23 (Win64) 로컬 호스트 포트 80의 PHP/7.0.10 서버 페이지는 아마 다음과 같을 겁니다

    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
  • 취소회신하다