View Single Post
Old 07-15-2010, 11:00 PM   #12 (permalink)
adamdecaf
The Addict
 
Join Date: May 2009
Posts: 287
Thanks: 5
adamdecaf is on a distinguished road
Default

PHP Code:
if ($_GET['count'] == 8) {
   echo 
$_GET['count'];
} else {
    if (
$_GET['count'] > 8) {
       
header("Location: index.php?count=0");
    } else {
       
header("Location: index.php?count=" $_GET['count']++);
    }

__________________
My Site
adamdecaf is offline  
Reply With Quote