Here you go bros. This script will make it so viewers will only be able to see your lander once, and then get redirected.
Put this in your header :
<?php
if (isset ($_COOKIE["hidemyshit"])) {
header('Location: http://www.cnn.com');
}
?>
Put this in your body somewhere:
<?php
$hotdog= 'we have a weiner';
setcookie("hidemyshit", $hotdog, time()+8640000);
?>
The time is set in seconds so you can mess around with it.
Put this in your header :
<?php
if (isset ($_COOKIE["hidemyshit"])) {
header('Location: http://www.cnn.com');
}
?>
Put this in your body somewhere:
<?php
$hotdog= 'we have a weiner';
setcookie("hidemyshit", $hotdog, time()+8640000);
?>
The time is set in seconds so you can mess around with it.