I still can't make it work... I'm hard-coding the variables but don't get any output:
<?
$postfields = 'x_Version=3.0&x_Login=MYACCOUNT&x_ADC_Delim_Data=true&x_ADC_URL=false&';
$postfields .= 'x_Amount='.$27.'&';
$postfields .= 'x_Card_Num='.$4222222222222.'&';
$postfields .= 'x_Exp_Date='.$04/04.'&';
$postfields .= 'x_Address='.$444 w test.'&';
$postfields .= 'X_Zip='.$90210.'&';
$postfields .= 'x_Type=AUTH_CAPTURE';
$curl_handle = curl_init ("
curl_setopt ($curl_handle, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($curl_handle, CURLOPT_POST, 1);
curl_setopt ($curl_handle, CURLOPT_POSTFIELDS, $postfields);
$result = curl_exec ($curl_handle) or die ("There has been an error contacting the transaction system"

;
curl_close ($curl_handle);
$result_fields = split (":", $result);
print("Thank you" . " " . $_POST['result_fields'] . "<BR>"

;
?>
There are no debug messages on php....
could you please tell me what I'm doing wrong...
Thank you very much for your prompt responce on this matter.....