is it possible to do this?

try this:

<?php
$choice = rand(0,1);
if($choice==0){
header("Location: hxxp://yourhostdotcom/landingpage.html");
} else {
header("Location: hxxp://yourhostdotcom/fbpage.html");
}
?>
 
Back
Top