Example #1
0
                  <input type="checkbox" name=""/><span>2 Star</span><br/>

                  <input type="checkbox" name=""/><span>2 Star</span><br/>

                </form>
              </div>
              <div class="col-md-12" id="left_menu_header">
                <h4> FACILITIES</h4>
              </div>
              <div class="col-md-12 facilities" id="left_menu">
                <form class="form" action="" method="POST">
                  
                  <table>
                     <?php 
$row = get_facilities();
foreach ($row as $facilities) {
    ?>
                    <tr>
                        <td>
                          <input type="checkbox" name="">&nbsp; 
                          <span class="fa fa-<?php 
    echo $facilities->facilities_class;
    ?>
"></span>&nbsp;<?php 
    echo $facilities->facilities_name;
    ?>
                        </td>
                    </tr>
                <?php 
}
Example #2
0
</span><br/>

            	<label for="address">Address :</label>
            	<textarea name="address" class="form-control" rows="3"></textarea>
            	<span class="text-danger"><?php 
echo form_error('address');
?>
</span>
            </div>
            <div class="col-md-6 right-panel">
            	<div class="col-md-3 padding0">
            		<label for="service">Facilities :</label>
            	</div>
            	<div class="col-md-9">
            	<?php 
$value = get_facilities();
foreach ($value as $service) {
    ?>
            	<input type="checkbox" name="service"> <?php 
    echo $service->facilities_name;
    ?>
<br/>
            	<?php 
}
?>
            	<?php 
echo form_error('service');
?>
            	</div>

            	<label for="description">Description :</label>