On Jun 11, 2007, at 4:29 PM, Colin Wetherbee wrote:

That sounds good to me. I'm not looking for any particular backward compatibility, and speed is an issue.

last i checked the speed difference is negligible. its 'more proper' to use libapreq, and if you're doing things in term of mod_perl handlers (ie, not anything that would run as a std cgi ), then there's little reason to use otherwise.



As I said in my original post, I tried to use Apache2::Request, but after creating that object, I couldn't print anything anymore. Perhaps someone could give me a hint on how to implement it?

could you print beforehand?

'print' might not be tied to the same output.

this might not be right based on your compile.
    print 'foo: ' . $cgi->param('foo') . "<br />\n";

try:
        $r->print( 'foo: ' . $cgi->param('foo') . "<br />\n" );




// Jonathan Vanasco

| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|   CEO/Founder SyndiClick Networks
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|      FindMeOn.com - The cure for Multiple Web Personality Disorder
|      Web Identity Management and 3D Social Networking
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|      RoadSound.com - Tools For Bands, Stuff For Fans
|      Collaborative Online Management And Syndication Tools
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -


Reply via email to