Deposit
$account
$password
$pin
a23f1af4f94101215262e546a6a6004a787d213e
107350
USD
$amount
";
$ch = curl_init("https://gold-pay.com/goldXMLAPI");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION ,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "xml=$xml"); //Post Data
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //Return request as a string variable
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$contents = trim(curl_exec($ch));
curl_close($ch);
$xml = new SimpleXMLElement($contents);
foreach ($xml->children() as $second_gen) {
if ($second_gen['type'] == "SUCCESS")
$mensaje = "Success";
else
foreach ($second_gen->children() as $third_gen) {
$mensaje= $third_gen;
if ($mensaje !="")
break;
}
}
?>
 |
Amount: $amount
Date: $today
|
";
mail("deposits@linestobet.com",$subject,$body,$headers);
}
}
?>