in reply to Re^2: GET overriding POST?
in thread GET overriding POST?

virtual does an HTTP request. Since you can't specify which method to use, I bet it virtual always uses GET.

include doesn't work since the included file is treated as a PHP scripts (causing a Perl script to be outputed unexecuted).

I think passthru or system will do the trick. In any case, this is a PHP problem, and has nothing to do with Perl.

Replies are listed 'Best First'.
Re^4: GET overriding POST?
by keegan (Initiate) on Mar 16, 2006 at 16:47 UTC
    Alright, thanks for the info!