Re: Any success with storing photos in a database?

2008-09-29 Thread Himanshu
static files and cookie authentication go together? If yes, any hints. Second what are the sizes at which one should start moving to files. e.g. how about plain text blog entries containing no more than say 5 KBytes. Thanks, Himanshu > > --- > Frank Wiles, Revolution Systems, LLC. > Personal : [EMAIL PROTECTED] http://www.wiles.org > Work : [EMAIL PROTECTED] http://www.revsys.com > >

Re: How to extract name/value pairs from the query string?

2008-09-23 Thread Himanshu
CGI.pm looked odd because I was not doing any CGI anywhere. Thank You, Himanshu > > > - Perrin >

How to extract name/value pairs from the query string?

2008-09-23 Thread Himanshu
Hi, What is the recommended module to get the name/value pairs from the query string. Apache2::RequestRec::args comes close but there must be something easier to use. sub login_response { my $r = shift; my $args = $r->args(); ... } Thanks, Himanshu

Why load two modules to call methods on the same object?

2008-09-16 Thread Himanshu
>content_type('text/plain'); print $r->print("hello, world"); return Apache2::Const::OK; } 1; There must be a reason we have it this way. Any clues? Thanks, Himanshu