</div>
    
    </td>
    </tr>
    <tr class="fir">
    <th><label for="quantity">Minimum Charge $ </label></th>
    <td><input id="minimum_charge" name="minimum_charge" size="30" type="text" value="<?php 
    echo $rentorhire['minimum_charge'];
    ?>
"/>
    <span class="checkStatus"></span></td>
    </tr>
      <?php 
    if ($objrentorhire->hasfiles($_GET['rid'])) {
        echo "<tr><td colspan='2'>List of image Files associated with this Rent or Hire : <br>";
        echo $objrentorhire->editphotos($_GET['rid']);
        echo "<td></tr>";
    }
    ?>
    
    <tr>
    <th>Upload Image File</th>
	<td><?php 
    unset($_SESSION['photofilename']);
    require_once $_SERVER['DOCUMENT_ROOT'] . "/common/class/flashupload.class.php";
    $uploadObj = new flashUpload('flashUpload');
    $uploadObj->redirectLink = "javascript:submitFormOnFloat(document.forms['frmPostRentOrHire']);";
    $uploadObj->uploadPath = "http://" . $_SERVER['HTTP_HOST'] . "/ajax/rentorhire/editpostrentorhire.php";
    $uploadObj->filetypedesc = "Image files";
    $uploadObj->vldnoblank = false;
    $objCommon = new common();