Posted by Oli Filth on 01/14/06 20:44
Chuck W. said the following on 14/01/2006 18:28:
> Hi there,
>
> I'm working a query that processes form variables. However one of the
> variables begins with a number. This is from a canned program so I
> actually need to remain, eg:
>
> <input type=text name="00N30000000qVb2" size=20>
>
> I need to proceess this variable on the page I post to, but obviously
> $00N30000000qVb2 won't work as a var in PHP. Any suggestions?
>
You shouldn't have register_globals on anyway. Turn it off, and use
$_GET["00N30000000qVb2"].
--
Oli
[Back to original message]
|