Postback Information
Voting Postback
When user votes, you can add their [UniqePlayerID] (max 20 characters) to the site voting URL
e.g. https://www.mmotop100.net/page/vote/site/[SiteID]/custom/[UniqePlayerID]
* Replace [SiteID] with your site ID from https://mmotop100.net.
* Replace [UniqePlayerID] with UniqeID that you identify your players with.
on successfull vote we will send back [custom] POST to specified postback URL.
Example PHP Code
<?php
if(gethostbyname("mmotop100.net") == $_SERVER['REMOTE_ADDR']){
$UniqeUserID = mysqli_escape_string($_POST['custom']);
//check db if user has voted and [UniqeUserID] is valid
$check_vote = mysqli_fetch_array(mysqli_query("SELECT vote FROM user WHERE userid = '$UniqeUserID'"));
if($check_vote[0] == '0'){
//Credit user for voting, for example 100 credits.
mysqli_query("UPDATE user SET credits = credits + 100 WHERE userid = '$UniqeUserID'");
} else {
//Save failed postback error with [UniqeUserID] for debug
}
}
?>