|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2001-12-29 22:54 UTC] mfischer@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 09:00:01 2025 UTC | 
<? if (!sizeof($HTTP_GET_VARS) ) { ?> <FORM ACTION="<?=$PHP_SELF?>" METHOD="GET"> <INPUT TYPE="TEXT" NAME="Test Input" VALUE="doh!"> <INPUT TYPE="SUBMIT"> </FORM> <?} else { ?> This won't work (it should):<?=$HTTP_GET_VARS['Test Input']?><BR> This will:<?=$HTTP_GET_VARS['Test_Input']?><BR> <? } ?>