Hi:
I have a form which has bunch of fields. Some of those fields have dots in their names. For example: name="state.admin"
I process all the submitted values in an array, however the dot gets replaced with an under score, like state_admin
I use the following code to display all the fields on the screen.:
foreach ($_GET as $key => $value)
{ echo $key."===".$value."<br>"; }
That's when I noticed the underscore.
The filed name must stay with the dot.
Any ideas as a work around?
thanx
Kamy