Page 1 of 1

$REQUEST_DATA['actSave'])

Posted: Mon Jun 30, 2008 3:58 am
by dumlee
Hi,

We are collecting GET or POST array data in $REQUEST_DATA[] but

in further coding of the file i am working with I found this statement

$REQUEST_DATA['actSave'])

I am not able to find what this actSave is.


Pls help

Re: $REQUEST_DATA['actSave'])

Posted: Mon Jun 30, 2008 4:30 am
by onion2k
At the point where you transfer the _GET and _POST values into $REQUEST_DATA try echoing them all to check whether actSave is being put into the array. If it isn't then the problem is with the form passing the values to your script. If it is then the problem is with the code putting the values into the $REQUEST_DATA array.

Re: $REQUEST_DATA['actSave'])

Posted: Mon Jun 30, 2008 6:12 am
by dumlee
Thanks.

It helped me in finding the problem.

I am fixing it.

Thanks again