[Share] Great Script for anyone incentivizing CPA offers

cool, glad to hear that. I didnt test if fully but if you redirect everything to a page with the following code you should be able to see whats going on.

Code:
<?php
	// This Page Displays the Users IP, User Agent, and Referrer
	$html  = "<html><head><title>Referral Check</title></head><body>";
	$html .= "<br />Client IP: " . $_SERVER['REMOTE_ADDR'];
	$html .= "<br />User Agent: " . $_SERVER['HTTP_USER_AGENT'];
	$html .= "<br />Referrer: " . $_SERVER['HTTP_REFERER'];	
	$html .= "<br />Query: " . $_SERVER['QUERY_STRING'];	
	$html .= "</body></html>";

	echo $html;
?>
 
the traffic findology sends , anyone know what the user agents it passes?
 
hey guys,

I'm a noob at scripting

Is this occurring on a single index.php page?
 
Back
Top