Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="container">
        <div class="row">
                <div class="col-lg-12 table-responsive">
                        <h3>Polling Users</h3>
                        <table class="table table-striped">
                                <thead>
                                        <tr>
                                                <th><?php echo ('UserId');?></th>
                                                <th><?php echo ('Android Id');?></th>
                                                <th><?php echo ('Created');?></th>
                                                <th><?php echo ('Updated On');?></th>
                                        </tr>
                                </thead>
                                <tbody>
                                        <?php foreach($response AS $user):?>
                                                <tr>
                                                        <td><?php echo $user['user_id'];?></td>
                                                        <td><?php echo $user['android_id'];?></td>
                                                        <td><?php echo $user['createdOn'];?></td>
                                                        <td><?php echo $user['updatedOn'];?></td>                                                       
                                                </tr>
                                        <?php endforeach;?>
                                </tbody>
                        </table>
                </div>
        </div>
        <ul class="pager">
                <?php if($page>1):?>
            <li><a href="?page=<?php echo $page-1;?>">Previous</a></li>
                <?php endif;?>
            <li><a href="?page=<?php echo $page+1;?>">Next</a></li>
        </ul>
</div>