php pagination
Re: php pagination
The issue is, whenever you call this page, you need to add ?page=1 to the end of URL.
Re: php pagination
Neo wrote:The issue is, whenever you call this page, you need to add ?page=1 to the end of URL.
so com/?page=1
but when i enter example www.example.com/
it will not add the ?page=1 only when i click next page it will show me ?page=1

i think i can probably redirect to that url with .htaccess

Re: php pagination
found a way
no need for .htaccess 
Code: Select all
<meta http-equiv="refresh" content="0; url=http://example.com/?page=1">
