I recently setup an account with neverblue tracking ( for a client. They started with a pixil which was easy enough but now they need me to setup a class so I can use their PostBack tracking. The image I get is that it is pretty straight forawrd, but I am not sure if they understand i am not a php wiz. I was hoping to get some insight. Thanks all
My Landing Page :
The info they send me :
Basically all you need to do is:
1. Send me the IP address of your server.
2. Use the sample php.class I sent you, modify it for your campaign as explained in the pdf document and in the php document itself and implement it in the php code of your conversion page.
e.g. this the class already modified for your offer:
<?php
require_once 'class.postback.php';
$nbpostback = new Postback( 'fb3c8f16d1f33f76198d1471dd6f05e697d8b115' );
$offer = 5656; // this is the Neverblue ID for your offer
$action = 7437; // this is the Neverblue ID for the associated action
$click_info = $_REQUEST[ 'code' ];
$response = $error = null;
if ( !$nbpostback->callPostback( $offer, $action, $click_info, $response, $error ) )
{
// log $error message and postback data
$nbpostback->logFailure( $offer, $action, $click_info, $error );
}
?>
My Landing Page :
The info they send me :
Basically all you need to do is:
1. Send me the IP address of your server.
2. Use the sample php.class I sent you, modify it for your campaign as explained in the pdf document and in the php document itself and implement it in the php code of your conversion page.
e.g. this the class already modified for your offer:
<?php
require_once 'class.postback.php';
$nbpostback = new Postback( 'fb3c8f16d1f33f76198d1471dd6f05e697d8b115' );
$offer = 5656; // this is the Neverblue ID for your offer
$action = 7437; // this is the Neverblue ID for the associated action
$click_info = $_REQUEST[ 'code' ];
$response = $error = null;
if ( !$nbpostback->callPostback( $offer, $action, $click_info, $response, $error ) )
{
// log $error message and postback data
$nbpostback->logFailure( $offer, $action, $click_info, $error );
}
?>