Gossamer Forum
Home : General : Perl Programming :

reading incoming post

Quote Reply
reading incoming post
Hi. I'm using cgi.pm and

I have to receive a payment gatway post with the following format

FIELD1:FIELD2:FIELD3:FIELD4

they say that it is sent to my return url "in a post" (not get).

But I can't find how to read that post. Suggestions.

Last edited by:

robyone: Dec 9, 2003, 2:59 AM
Quote Reply
Re: [robyone] reading incoming post In reply to
For an ordinary post request just use something like:

Code:
my $IN = new CGI;
my @fields = split ':', $IN->param('the_post_field_name');