ok i know 25 queries is alot so can someone give me some suggestion on how to fix up this code or give me some suggestions on how to lessen the queries:
PHP Code:
////Begin Entry///
if($view=="entry"){
/*Begin Checking for Image Id*/
if(empty($imgid)){
$url="gallery.php?view=index";
$errormessage="There was no image identity identified.If you followed a bad link please report it to a board administrator. Your are now being redirected to the gallery index.";
eval('print_output("' . fetch_template('STANDARD_REDIRECT') . '");');
}
/*End Checking for Image Id*/
else{
$fentry= $DB_site->query("SELECT * FROM gallery WHERE image_id='$imgid' AND gallery_id='$id'");
while($entry= $DB_site->fetch_array($fentry))
{
$imagesize= getimagesize($entry[image_url]);
/*########Begin Calculating Rating######*/
if($entry[image_totalvotes]==0){
$rating=0;
}
else{
$calcrating= $entry[image_totalrating]/$entry[image_totalvotes];
$rating= round($calcrating);
}
/*########End Calculating Rating######*/