Thread
:
paging with for loop
View Single Post
#
2
(
permalink
)
07-17-2008, 11:25 AM
gilgalbiblewhee
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'
];
}
gilgalbiblewhee
View Public Profile
Visit gilgalbiblewhee's homepage!
Find all posts by gilgalbiblewhee