At 10:13 AM 5/12/00 -0300, FEITO Nazareno wrote:
>Correct me if I mistake, but i want to know what�s better...
>Cause with CGI is a little more difficult make forms and with handlers
>isn�t, i supposse i can use CGI and handlers at the same time.
>I�ve read that CGI object oriented programming just use 2 k of resource of
>the system and not object oriented consume 17k... may be somebody can
>explain me that, i�m referring to the conflict that i got between cgi and
>handlers...
With mod_perl it doesn't matter because the modules get cached. So the only
difference is the algorithm for parsing the form elements... CGI.pm is more
standard and x-platform, but Apache::Request is faster, but ties you to
mod_perl (a bit).