use LWP::Simple;
$doc = get $url;
print "Content-type: text/html\n\n";
print "$doc";
exit;
The code above is what I've been using to send information to a shopping cart script so that if the user exits the browser while the credit card authorization is still going on the order will still take place.
In short I am needing to be able to send the customers IP address in the header instead of my server's IP. Is there an extension of LWP::COMMON where I can specify the header information so it looks like the user is requesting the page rather than my script? Any and all help is greatly appreciated.
Thanks
Shelby
webmaster@smwebdesigns.com
$doc = get $url;
print "Content-type: text/html\n\n";
print "$doc";
exit;
The code above is what I've been using to send information to a shopping cart script so that if the user exits the browser while the credit card authorization is still going on the order will still take place.
In short I am needing to be able to send the customers IP address in the header instead of my server's IP. Is there an extension of LWP::COMMON where I can specify the header information so it looks like the user is requesting the page rather than my script? Any and all help is greatly appreciated.
Thanks
Shelby
webmaster@smwebdesigns.com