「労働者が自分の仕事をうまくやりたいなら、まず自分の道具を研ぎ澄まさなければなりません。」 - 孔子、「論語。陸霊公」
表紙 > プログラミング > 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 日に公開
ブラウズ:770

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