View Single Post
  #2 (permalink)  
Old 07-17-2008, 11:25 AM
gilgalbiblewhee gilgalbiblewhee is offline
Registered User
 
Join Date: Jul 2004
Posts: 249
How do you make it so that if the url has no ?page=1 extension then there has to be an assumption that it is 1?
This didn't work:
PHP Code:
if($_GET['page']==''){
    
$url_page 1;
    }else{
    
$url_page $_GET['page'];
    } 
Reply With Quote