I'm working on a PHP application that links into the Protx VSP Direct payment gateway. To handle "3D Secure" requests from the credit card processing company, I need to forward the user to a different website, mimicking a form that has been posted. I'm trying to use the cURL libraries, but seem to have hit a problem. My code is the following:
<?php
$ch = curl_init();
// Set the URL
curl_setopt($ch, CURLOPT_URL, 'http://www.google.com/');
// Perform a POST
curl_setopt($ch, CURLOPT_POST, 1);
// If not set, curl prints output to the browser
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 0);
// Set the "form fields"
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
$output = curl_exec($ch);
curl_close($ch);
?>
Bütün bu geçti URL içeriğini kapmak olduğunu yapar, ve her yerde kullanıcı iletmediği. Googling ve kadar ben olabildiğince yukarı okuma denedim, ama ben eksik anlamaya olamaz. Herhangi bir fikir? Ben bunu önleyebilirsiniz eğer kendisi otomatik gönderen bir HTML formu oluşturmak zorunda istemiyorum.
Herhangi bir yardım :-) için teşekkürler