$REQUEST_DATA['actSave'])

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
dumlee
Forum Commoner
Posts: 33
Joined: Mon Jun 30, 2008 12:06 am

$REQUEST_DATA['actSave'])

Post 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
User avatar
onion2k
Jedi Mod
Posts: 5263
Joined: Tue Dec 21, 2004 5:03 pm
Location: usrlab.com

Re: $REQUEST_DATA['actSave'])

Post 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.
dumlee
Forum Commoner
Posts: 33
Joined: Mon Jun 30, 2008 12:06 am

Re: $REQUEST_DATA['actSave'])

Post by dumlee »

Thanks.

It helped me in finding the problem.

I am fixing it.

Thanks again
Post Reply