Forum: PHP Jun 3rd, 2008 |
| Replies: 25 Views: 1,822 This is what i once used in my code:
$showfromthisid = ceil($pagenumber*10) -10;
$maxshownmessages = 10;
$result = mysql_query("SELECT * FROM table ORDER BY id DESC LIMIT... |
Forum: PHP Jun 3rd, 2008 |
| Replies: 25 Views: 1,822 well, you are doing this
// counting the offset
$offset = ($page - 1) * $rowsPerPage;
before you do this:
// how many rows to show per page
$rowsPerPage =10;
i think it shoudl be other... |
Forum: PHP Jun 3rd, 2008 |
| Replies: 8 Views: 482 indeed, post your htaccess if you want us to help you |
Forum: PHP Jun 3rd, 2008 |
| Replies: 8 Views: 482 If you remove the htaccess file, the problem is gone? Then it's quite clear to me what the problem most likely is...
I don't know if this is possible, but can it be that the server doesnt support... |
Forum: PHP Jun 3rd, 2008 |
| Replies: 8 Views: 482 Maybe you should post the htaccess file? IF you think that is really the problem |