I've got a problem. I have a mostly complete commerce site. All done in PHP. We're using Verisign's Payflowpro for our credit card authorizations. From within PHP, I need to pass a couple of variables (amount, cc_number etc.) to a PERL script that will actually run the transaction and spit back the Verisign response string.
I've tried using exec() which works but not with a query string. And, I think virtual() would work but the server this is running on (at an ISP by the way so I can't use the built in PHP functions) is Roxen and I think virtual() is Apache specific.
Is there some other way to pass variables to this Perl script from within PHP? I could create this whole last step in PERL but I REALLY don't want to.