mình đang dùng cái code có postback như thế này.
<?php
define('GPTZ',true);
include("config.php");
if (isset($_GET['SubId']) && isset($_GET['Earn']) && isset($_GET['CampId']))
{
$subid = mysql_real_escape_string($_GET['SubId']); // Username of the user that earned the reward(s).
$earn = mysql_real_escape_string($_GET['Earn']); // Amount that the user has earned.
$offer = addslashes($_GET['CampId']);
mysql_query("UPDATE gpt_account SET points=points+".$earn." WHERE id='".$subid."'");
mysql_query("UPDATE gpt_account SET completed=completed+1 WHERE id ='".$subid."'");
mysql_query("INSERT INTO gpt_jobs(offer,points,ip,user_id) VALUES('BLVD-Media - $offer','$earn','N/A',$subid)");
mysql_close();
echo "RewardTool® Crediting Success: ".$subid." earned ".$earn." points.";
}
else {
echo "RewardTool® Error";
exit;
}
?>
Mình Test thì thấy nó Postback đc, nhưng khi làm thì nó không nhận được postback. Bạn nào biết sữa lỗi , sữa giúp mình với
<?php
define('GPTZ',true);
include("config.php");
if (isset($_GET['SubId']) && isset($_GET['Earn']) && isset($_GET['CampId']))
{
$subid = mysql_real_escape_string($_GET['SubId']); // Username of the user that earned the reward(s).
$earn = mysql_real_escape_string($_GET['Earn']); // Amount that the user has earned.
$offer = addslashes($_GET['CampId']);
mysql_query("UPDATE gpt_account SET points=points+".$earn." WHERE id='".$subid."'");
mysql_query("UPDATE gpt_account SET completed=completed+1 WHERE id ='".$subid."'");
mysql_query("INSERT INTO gpt_jobs(offer,points,ip,user_id) VALUES('BLVD-Media - $offer','$earn','N/A',$subid)");
mysql_close();
echo "RewardTool® Crediting Success: ".$subid." earned ".$earn." points.";
}
else {
echo "RewardTool® Error";
exit;
}
?>
Mình Test thì thấy nó Postback đc, nhưng khi làm thì nó không nhận được postback. Bạn nào biết sữa lỗi , sữa giúp mình với