ID: 14099 Updated by: sniper Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: HTTP related Operating System: Linux, Red-Hat 6.2 PHP Version: 4.0.6 New Comment:
Maybe in other languages but not in PHP. As Markus already said, '.' is reserved character in PHP. Even if you encode it it will be seen as . in server side. Previous Comments: ------------------------------------------------------------------------ [2001-11-19 03:49:16] [EMAIL PROTECTED] even if you use . it's been replaced to "_". in many other languages this is possible. <form action="" method="post" name="aaa"> <input type="text" size="12" name="12.13.14" value="66.66"> <input type="submit" value="send me"> </form> ------------------------------------------------------------------------ [2001-11-18 12:52:38] [EMAIL PROTECTED] That's intended behaviour. You can't have dots in variable names, the dot is already used for string concatenation. Bogus. ------------------------------------------------------------------------ [2001-11-18 12:31:16] [EMAIL PROTECTED] When i submit a form where is a dot in the name it's changes to "_". for example: <form action="<?=$PHP_SELF;?>" method="post" name="aaa"> <input type="text" size="12" name="12.13.14" value="66.66"> <input type="submit" value="send me"> </form> when runing in PHP: foreach ($HTTP_POST_VARS as $key=>$val){ echo "$key = $val<BR>"; } the output will be : 127_0_0_1 = 66.55 ------------------------------------------------------------------------ [2001-11-18 12:29:01] [EMAIL PROTECTED] When i submit a form where is a dot in the name it's changes to "_". for example: <form action="<=$PHP_SELF>" method="post" name="aaa"> <input type="text" size="12" name="127.0.0.1" value="66.55"> <input type="submit" value="send me"> </form> when runing in PHP: foreach ($HTTP_POST_VARS as $key=>$val){ echo "$key = $val<BR>"; } the output will be : 127_0_0_1 = 66.55 ------------------------------------------------------------------------ Edit this bug report at http://bugs.php.net/?id=14099&edit=1 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]