<div class="col-xs-4" style="padding-top:34px;">
                   
                    <h3>In-active event Lists</h3>
                <tbody>
                            <table class="table table-striped table-bordered table-hover table-responsive">
                            <thead>
                            <tr>
                            <th style="color:green">Event Name</th>
                            <th style="color:red; ">Actions</th>
                            </tr>
                            </thead>
                            </tbody>
                                <?php 
$ev = new Event();
$list_of_event = array();
$list_of_event = $ev->inactiveloadEvent($pagination->per_page, $pagination->offset());
foreach ($list_of_event as $event) {
    ?>
                                        <tr>
                                            <td><?php 
    echo $event->event_name;
    ?>
</td>
                                                                                        
                                            <td>
                                              <a href="../functions/active_event.php?id=<?php 
    echo $event->event_id;
    ?>
">
                                                <button class="btn btn-danger"><span class="glyphicon glyphicon-remove-circle">
                                                 </span>&nbsp;Set to Active</button></a>