Tamirat, I was helping Danny the other day. He's passing variables from a form. Normally, you can read those variables on the receiving page by simply declaring the variable with teh same name as the form variable's tag. for example
<input name="firstName" type=text>
can be read on the receiving page by simply declaring
$firstName
It works on my version of php, but not on his. he has the most recent version of php. I'm assuming some flag in the php.ini isn't set correctly, however I'm not sure what it is. THe $HTTP_POST_VARS array was a temporarily solution to the problem, however it's not as convenient as the previous method described. Does anyone have an answer to this? Thanks!