in php how do you check if there are anymore files? i got the pagination to work but if the number of files is not a multiple of 4 then 1, 2 or 3 of the files will come up blank at the end because there are no files left. here is my code so far:
<?php
if(!$_GET['start']) {
$start = 0;
} else...
I got this pagination thing from this forum but there are a few errors. it comes up with First | Last | Last | Last | Last | Last | and i need it to display in 2 columns
here is the code:
PHP Code:
<?php
if(!$_GET['start']) {
$start = 0;
} else {
$start = $_GET['start'];
}...