Best mailing list member,

I have an external payment gateway provider (similar to PayPal) and need to
send POST variables to them to initiate the Payment Process.

Is there any function in PHP that can send POST variables to a URL without
using <form> and then a javascript that submits it when the page is loaded?

My dream is to have a function (or class) that would be used this way:

$url="url_to_submit_post_variables_to";
$ps = new SubmitPost($url);
$ps->addPostVar($name, $value);
$ps->submitPost();

Anyone with ideas about this?

Best regards,
Peter Lauri

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to