|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-10-29 21:53 UTC] iliaa@php.net
[2002-10-29 21:57 UTC] suming at eastday dot com
[2002-10-29 21:59 UTC] rasmus@php.net
[2002-10-29 22:03 UTC] suming at eastday dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 30 12:00:01 2025 UTC |
I install php4.2.3,apache1.3.26,mysql3.23.51 in os windows2002 professional and windows xp professional. There is nothing error in my script .php document if i not use the form variable. But php can not read the form variable. Below is my test file?? <?php if (isset($submit)) { echo "Submit is=".$test; } echo "Test is=".$test; ?> <html> <head> </head> <body> <form name="frm" action="index.php" method="post" > <input type="text" name="test"> <input type="submit" name="submit" value="submit"> </form> </body> </html> when i type "PHP.net" in the text field,and click the button "submit",IE5.0(or IE 6.0)only print "Test is=", this indicate that the form variable can not read by php. BUT the soft phpmyadmin is work well using the form variable ,i can not differ from the two script between me and phpmyadmin's.