<tr class="fir">
     <th>&nbsp;Category Listing  :</th> <td>&nbsp;Category Listing..</td>
  </tr>
  
   <tr>
    <th valign="top">&nbsp;Description:</th> <td valign="top"><?php 
echo $rentorhire_data['description'];
?>
</td>
  </tr>

 <tr>
  	<th valign="top">&nbsp;Related photos:</th>
    <td><?php 
$photos = $rentorhire->getPhotos($_GET['id']);
if ($photos) {
    echo "<ul style=\"list-style:none\">";
    $ph = new photo();
    foreach ($photos as $photo) {
        $img = $ph->getPhotoById($photo['photo_id'], 2);
        echo '<li><a href="javascript:;" onclick="loadPage(\'/ajax/display_image.php?id=' . $photo['photo_id'] . '\')"><img src="' . $img . '" border="0"></a></li>';
    }
    echo "</ul>";
}
?>
</td>
  </tr>