Subversion Repositories cheapmusic

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
103 - 1
<script type="text/javascript">
2
$(document).ready(function() {
3
    $("table").tablesorter({
4
		sortList: [[2,0]]
5
    });
6
});
7
</script>
8
 
9
<table id="cust_tab" class="tablesorter" style="margin-top: 30px;">
10
	<thead>
11
		<tr class="listHead">
12
			<th class="id_hash">#</th>
13
			<th><?php echo $spText['common']['Url']?></th>
14
			<th><?php echo $spText['common']['Rank']?></th>
15
			<th><?php echo $spText['common']['Keyword']?></th>
16
			<th><?php echo $spText['common']['Date']?></th>
17
		</tr>
18
	</thead>
19
	<tbody>
20
		<?php
21
		if (!empty($pageResultList)) {
22
		    foreach($pageResultList as $i => $listInfo){
23
    			?>
24
    			<tr>
25
    				<td><?php echo $i + 1;?></td>
26
    				<td><?php echo $listInfo['url'];?></td>
27
    				<td><?php echo $listInfo['rank'];?></td>
28
    				<td><?php echo $listInfo['keyword'];?></td>
29
    				<td><?php echo $listInfo['result_date'];?></td>
30
    			</tr>
31
    			<?php
32
    		}
33
		} else {
34
		    echo showNoRecordsList(3);
35
		}
36
		?>
37
	</tbody>
38
</table>