This a single REQUEST is either a POST or GET request there is no need for this separation IMO. Everything's in the REQUEST. -aj --On Montag, 15. Dezember 2003 13:09 Uhr +0100 fowlertrainer@anonym.hu wrote:
Hello zope,
In the PHP/Perl/CGI I get the Post, and Get variables in another array. This thechique is prevent to merge the Post/Get variables. So if I get the (hided) POST variable named X, and use it to do anything, the common user don't see it.
But in Zope I see that all of the variables placed in the request "object", and if anyone create a dummy Get variables, then it is do same thing:
<input type="hidden" name="x" id="x" value="nnn"> post
is same as:
mysite?x=nnn
So: the user is can do same effect like my hidden field.
Can I separate these arguments/variables as php/perl ?
Thanx:
KK