is there anyway for the actual offer to popout after they click the submit button? Like the iframe maximizes and they are taken to the next page?
This is what you do...
you run a ppc campaign.... and use this method to scale it a bit..
scale it to where you add the cost of the ppc ad campaign...
then the lead conversion percentage will be within standards..
good luck...
if you are audited you are fukced...
because the networks know and save the IP from where the offer is filled.
with the ip... you can get the zipcode area....
a better script would be to get the ip... and then extract the zip code... then offer that as a captcha.....
Its SUPER BLACKHAT so yes. Your basically giving your network fake leads.Will this method get you banned?
<?
include("geoip.inc");
include("geoipcity.inc");
include("geoipregionvars.php");
$username="";
$password="";
$database="";
$gi = geoip_open("./GeoLiteCity.dat", GEOIP_STANDARD);
$rsGeoData = geoip_record_by_addr($gi, $_SERVER['REMOTE_ADDR']);
mysql_connect(localhost,$username,$password);
mysql_select_db($database) or die( "Unable to select database");
$query="SELECT zip FROM zip_codes WHERE city = '$rsGeoData->city' AND state = '$rsGeoData->region'";
$result=mysql_query($query);
$num=mysql_numrows($result);
$random = rand( 0, ($num -1));
mysql_close();
$i=0;
while ($i < $num) {
echo("<pre>");
$zip=mysql_result($result,$i,zip);
echo "$zip <br>";
echo("</pre>");
$i++;
}
echo "<br>";
echo "Random<br>";
$zip=mysql_result($result, $random, zip);
echo "$zip <br>";
geoip_close($gi);
?>