Hello,
I am not sure how to create the callback.php. this is what I have so far.
[php]
<?php include('inc/config.php'); $con = mysql_connect($dbhost,$dbuser,$dbpass); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db($dbname); session_start(); $usrid = $_REQUEST["USER_ID"]; $currency = $_Get["currency"]; $transid = $_Get["transaction_id"]; $ms = $_Get["ms"]; mysql_query($sql); { $sql="Update `oto_members` set glacierbux=glacierbux+$currency where Id=$usrid limit 1"; mysql_query($sql); } ?>[/php]
What am I doing wrong. the call back url is suposed to get the information from http://domain.com/callback.php?user_id=58044¤cy=10&transaction_id=100&&ms=1b13e00b47bdfbcb39046d0 and use it in the php file to tell what user to credit how many glacierbux or currency.
Please help
Thanks
David Schmader