| while ($awake){ code(); } Name: Eric Location: Kentucky Join Date: Mar 2005
Posts: 4,239
NP$: 384.00 ( Donate)
| Just a note PHP Code: if(!isset($_GET['page'])){
$page = 1;
}else {
$page = $_GET['page'];
}
Wouldn't recommend using that.
Try this instead PHP Code: $page = (!isset($_GET['page'])) ? 1 : intval($_GET['page']);
|