Hi,
$djs_all_num = mysql_num_rows($djs_all_db);
while($djs_all = mysql_fetch_array( $djs_all_db )) {
if ($djs_all_num % "2") {
With my if () statement, this should halve the amount of rows, and so in the else further on it should display the rest.
Is this correct?