PHP converts periods to underscores
April 25th, 2003In case you didn't know it, PHP converts periods (".") to underscores ("_") in all variable names. This includes GET, POST and COOKIE variables. A period is not a valid character in a PHP variable name. If you consider the syntax you would have to use in order to access it, you can see why:
$foo.bar [...]