Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
19274 manas 1
<div class="container">
2
	<div class="row">
3
		<div class="col-lg-12 table-responsive">
4
			<h3>Polling Users</h3>
5
			<table class="table table-striped">
6
				<thead>
7
					<tr>
8
						<th><?php echo ('UserId');?></th>
9
						<th><?php echo ('Android Id');?></th>
10
						<th><?php echo ('Created');?></th>
11
						<th><?php echo ('Updated On');?></th>
12
					</tr>
13
				</thead>
14
				<tbody>
15
					<?php foreach($response AS $user):?>
16
						<tr>
17
							<td><?php echo $user['user_id'];?></td>
18
							<td><?php echo $user['android_id'];?></td>
19
							<td><?php echo $user['createdOn'];?></td>
20
							<td><?php echo $user['updatedOn'];?></td>							
21
						</tr>
22
					<?php endforeach;?>
23
				</tbody>
24
			</table>
25
		</div>
26
	</div>
27
	<ul class="pager">
28
	  	<?php if($page>1):?>
29
	    <li><a href="?page=<?php echo $page-1;?>">Previous</a></li>
30
		<?php endif;?>
31
	    <li><a href="?page=<?php echo $page+1;?>">Next</a></li>
32
  	</ul>
33
</div>