Hi,
I've posted this problem before, but still can't find a solution. (I'm using Apache as my web server and the latest version of PHP). Here's the problem...
Lets say I have a textbox -> name="Name" with form method="POST". I can't get the values in textbox 'Name' when I use $Name....it keeps showing a warning: undefined variable Name eventhough I've turned on the "register_globals". However when I add an '@' in front -> @$Name it works fine. And i've tried changing the form method to "GET" and used $QUERY_STRING to get the value in 'Name'. It works fine.
A friend of mine told me it has something to do with enable_track_vars. Can somebody help me on this?