Skip to main content
Skip table of contents

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.

  1. In the index.php file, put the code on the very first line:

CODE
<?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.

  1. In the success.php file, put the code on the very first line:

CODE
<?php

setcookie("double", 'active', time()+3600*24, '/');

?>
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.