I don't know how this relates to the original question, but your problem is probably because track_vars is not on in the php.ini file.
You can use the $HTTP_POST_VARS[] or $HTTP_GET_VARS[] arrays to get your values.
If you have an input box called 'name', then you can use $HTTP_POST_VARS["name"] for it's value.
---John Holmes...