I've searched the forum but can't find exactly what I need. I am hoping to use existing CGI Perl scripts (using CGI.pm) as content generators for a PHP/template site.
I've seen comments about using 'passthru' but many of my CGI scripts also need to pull parameters using POST or GET (ex: /url/script.cgi?id=addpage&action=review).
Has anybody got any tricks that would minimize changes to my existing CGI scripts or do I need to get rid of CGI.pm calls and revise the argument passing so my POST parameters simply become command line parameters (ex: /usr/script.cgi addpage review)?