Q: Variables from my links and forms aren't getting into the object. What's wrong?
A: Check to see if the track_vars
Configuration Variable is turned on.
To check, place phpinfo()
inside your script and then run your script. If the
track_vars
line says 0, that's the problem.
To turn it on modify the track_vars
setting in
your php.ini
file. Or you can use your .htaccess
files to turn it on
by adding one of the following lines, depending on which version of PHP you're using:
PHP 3:php3_track_vars on
PHP 4:php_flag track_vars on