if($gallerycatno1<>"0") {
?>
$strquery1010="select * from gallerycat where gallerycatno='$gallerycatno1'";
$result1010=mysql_query($strquery1010);
$row1010=mysql_fetch_array($result1010);
$strquery2000="select * from gallery where gallerycatno='$gallerycatno1' order by galleryno asc limit " . $start . "," . $perPage;
$result2000=mysql_query($strquery2000);
$totalrecords2000=mysql_num_rows($result2000);
?>
if ($totalrecords2000==1){
$width="228";
}else if ($totalrecords2000==2){
$width="474";
} else {
$width="720";
}
?>
$i=1;$j=1;
while($row2000=mysql_fetch_array($result2000)) {
$galleryno=$row2000["galleryno"];
$gallerycatno1=$row2000["gallerycatno"];
if ($j==2)
{
echo "
| ";
}
if ($j==3)
{
echo "
| ";
}
if ($j==4)
{
echo "
|
|
|
|
|
";
$j=1;
}
?>
} ?>
$j++; $i++; } ?>
} else {?>
Currently, there is no gallery to display.
} ?>
1