"일꾼이 일을 잘하려면 먼저 도구를 갈고 닦아야 한다." - 공자, 『논어』.
첫 장 > 프로그램 작성 > Why isn\'t POST Request Capturing Input in PHP despite Valid Code?

Why isn\'t POST Request Capturing Input in PHP despite Valid Code?

2024년 11월 18일에 게시됨
검색:129

Why isn\'t POST Request Capturing Input in PHP despite Valid Code?

Addressing POST Request Malfunction in PHP

In the presented code snippet:

<pre><?php echo $_POST['ss'];?>
<form action="<?php echo $_SERVER['PHP_SELF'];?>" method="post">
<input name="ss" type="text" />
<input type="submit" name="submit">
</form>
</pre>

The intention is to capture the input from the text box and display it when the submit button is clicked. However, the output remains blank. While the method="get" works seamlessly, method="post" poses a problem.

Troubleshooting the POST Request

To resolve this issue, consider the following steps:

  1. Check the Action Attribute:
    If you are refreshing the page, set the action attribute to an empty string, e.g.:

    action=''

    instead of:

    action="<?php echo $_SERVER['PHP_SELF'];?>"
  2. Inspect the $_POST Array:
    Use var_dump to check the contents of the $_POST array after form submission.
  3. Configure POST Data Handling:
    Add the following line at the beginning of your PHP file to handle POST data properly:

    if(empty($_SERVER['CONTENT_TYPE']))
    { 
      $_SERVER['CONTENT_TYPE'] = "application/x-www-form-urlencoded"; 
    }
  4. Review php.ini Settings:
    Ensure that the following settings exist in your php.ini file:

    post_max_size = 8M
    variables_order = "EGPCS"
  5. Consider Memory Allocation:
    Stay vigilant with memory allocation. Allocating over 2048MB may lead to issues, depending on system specifications.
  6. Restart Apache (if necessary):
    If you modify php.ini and PHP runs as an Apache module, restart Apache using a command like:

    sudo /etc/init.d/httpd restart
릴리스 선언문 이 글은 1729411759에서 재인쇄되었습니다. 침해 내용이 있는 경우, [email protected]으로 연락하여 삭제하시기 바랍니다.
최신 튜토리얼 더>

부인 성명: 제공된 모든 리소스는 부분적으로 인터넷에서 가져온 것입니다. 귀하의 저작권이나 기타 권리 및 이익이 침해된 경우 자세한 이유를 설명하고 저작권 또는 권리 및 이익에 대한 증거를 제공한 후 이메일([email protected])로 보내주십시오. 최대한 빨리 처리해 드리겠습니다.

Copyright© 2022 湘ICP备2022001581号-3