Double
A double is a phone number that entered our system for one offer within 24 hours (regardless of the webmaster).
To avoid such cases, we suggest using this code, which will redirect the user who has already left the lead to another page of your choice.
In the index.php file, put the code on the very first line:
<?php
if(isset($_COOKIE['double'])) {
echo "<script>
window.location.replace('YOUR-URL');
document.location.href='YOUR-URL'
</script>";
exit;
}
?>
Where, instead of YOUR-URL, you need to substitute a link, for example, to another offer.
In the success.php file, put the code on the very first line:
<?php
setcookie("double", 'active', time()+3600*24, '/');
?>