this is what im trying to do, I'm trying to use php to redirect the user to another php page (main.php) and I'm trying to append a variable in the URL thats value will be a random number between 1-3, thanks for your help...
<?php
$random = (rand()%3)
header("Location: main.php?'$random'"); /* Redirect browser */
exit;
?>