07-15-2010, 11:00 PM
|
#12 (permalink)
|
|
The Addict
Join Date: May 2009
Posts: 287
Thanks: 5
|
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']++); } }
|
|
|
|