|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2005-02-25 14:17 UTC] nlopess@php.net
Description: ------------ The POST form data is always empty, while GET works. In linux with PHP 5.1 built: Feb 20 2005 14:51:15, I don't have any problem. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 01:00:01 2025 UTC |
I had apache 2.0.52 and I upgraded it to 2.0.53 and still doesn't work. Any simple script like the above helps to reproduce: <? print_r($_POST); if(!empty($_POST['t'])){ file_put_contents('bugs.txt',$_POST['t']); echo "ok"; }else{ echo '<body><form method="POST" action="bugs.php"><textarea rows="10" name="t" cols="92"></textarea></p><p><input type="submit" value="submit"></form></body>'; } ?>