<table class="table table-striped table-bordered table-hover table-responsive">
                                <thead>
                                <tr>
                                
                                <th style="color:green">Combo Name</th>
                                <th style="color:green">Description</th>
                                <th style="color:green">Price</th>
                                <th style="color:red;" colspan="2">Actions</th>
                                </tr>
                                </thead>
                                        
                                </tbody>
                                    <?php 
$c = new Combo();
$list_of_combo = array();
$list_of_combo = $c->loadCombo();
foreach ($list_of_combo as $combo) {
    ?>
                                            <tr>
                                               
                                                <td><?php 
    echo $combo->name;
    ?>
</td>
                                                <td><?php 
    echo $combo->description;
    ?>
</td>
                                                <td><?php 
    echo $combo->price;
    ?>