Jump to content

trizocy

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Everything posted by trizocy

  1. Hey scootstah Thanks for answering and trying to help me See when a user complete a task on my site, it will send a link to a network i am in. Lets say the link my site send is this: www.google.com/offer=73637/status=1 And when my network approval the link, my site send, it will call back and send the link to my postback But the bad thing is that it miss the user The link should be like this: www.google.com/offer=74637/status=1/user=scootstah But the network dont support the user So they said you could easliy do this with cookie and let the cookie check after they have send back the link to my site The network would only scrape offer and status info :/ If you got any other ideas what i can do, please tell.
  2. Hello there I was wondering if anyone could help me with this problem See I running a site where people can log in, and everytime they log in, a cookie is set, based on their username. so when a user complete a offer, my website send a link to a Network. (example: www.Network.com/offer=9384736) When the Network has receive the link with the offer (offer=9384736) , then they will do a postback call to my website. Example my site is www.mywebsite.com/PB.php/offer=9384736 Then my postback script will get the offer and check for the cookie when a postback call is made from the network to my script. So what i want is when someone giving me a postback call, a script will check for the cookie ( the user who have complete a offer) I was just think just to put this in echo $_COOKIE["user"];, but that dident work, because it was the network who called my postback. So have anyone any idea how i can do this? Would really appericate if someone could help me out Thanks!
  3. Hey can someone help me with Postback.php? I pay 10$ to paypal with if someone help me Please mail me if u are interested.
  4. Hello guys, im new here , hope i meet great and friendly people here. Anyway, i need some help with a new Post back setup and hope anyone here could help me. This old script work but have problem to put in the new post back, here is it. include("includes.php"); $subid = $_REQUEST['subid']; $survey = $_REQUEST['survey']; $earn = $_REQUEST['earn']; $pdtshow = $_REQUEST['pdtshow']; //$query_getuserid = mysql_query("SELECT id from members WHERE username= '".$subid."'") or die(mysql_error()); //foreach(mysql_fetch_array($query_getuserid) as $userid); $query_checkRef = mysql_query("SELECT referral_ID from members WHERE username= '".$subid."'") or die(mysql_error()); foreach(mysql_fetch_array($query_checkRef) as $ref_id_user); if ($ref_id_user>=1) { mysql_query("UPDATE members SET points=points+".$pdtshow." WHERE username='".$subid."'"); mysql_query("UPDATE members SET completed_surveys=completed_surveys+1 WHERE username ='".$subid."'"); mysql_query("UPDATE members SET points=points+".$refer_points." WHERE id ='".$ref_id_user."'"); mysql_close(); echo "Success: ".$subid." earned ".$pdtshow." points\n and is referred by".$ref_id_user; }else { mysql_query("UPDATE members SET points=points+".$pdtshow." WHERE username='".$subid."'"); mysql_query("UPDATE members SET completed_surveys=completed_surveys+1 WHERE username ='".$subid."'"); mysql_close(); echo "Success: ".$subid." earned ".$pdtshow." points\n and is referred by nobody"; } ?> Here is the new postback i should insert. cvid ip name status sid And it should seem like this: http://example.com/postback.php?txid=1234&ip=123.123.123.123&name=Unlocker+#1&status=1&sid=abc Can anyone help me out ? Maybe insert it for me and send it over to me -Trizocy
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.