Re: CGI::param,arg,content

2002-05-01 Thread Per Einar Ellefsen
At 09:39 01.05.2002, Konstantin Yotov wrote: >Hello! :) > >I read in the mod_perl, that arg is more fast than >CGI::param, but when I try to use it I can get form >date only when use method GET. I try this: >%param = $r->method eq 'post' ? $r->content : >$r->args; >But without a success. Please gi

Re: CGI::param,arg,content

2002-05-01 Thread Doran L. Barton
Not long ago, Konstantin Yotov proclaimed... > I read in the mod_perl, that arg is more fast than > CGI::param, but when I try to use it I can get form > date only when use method GET. I try this: > %param = $r->method eq 'post' ? $r->content : > $r->args; > But without a success. Please give me s

CGI::param,arg,content

2002-05-01 Thread Konstantin Yotov
Hello! :) I read in the mod_perl, that arg is more fast than CGI::param, but when I try to use it I can get form date only when use method GET. I try this: %param = $r->method eq 'post' ? $r->content : $r->args; But without a success. Please give me some advice. Thank you. __