-
Notifications
You must be signed in to change notification settings - Fork 1
/
audio.php
31 lines (30 loc) · 1.07 KB
/
audio.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
include_once "conn/conn.php";
$sql = "select * from tb_audio order by downTime desc limit 0,5";
$t_rst = $conn->execute($sql);
$num = 1;
?>
<table width="265px" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="262px" height="28px" colspan="3" align="center" valign="middle" background="images/file_taxis.jpg">
</td>
</tr>
<?php while(!$t_rst->EOF){ ?>
<tr>
<td width="25px" height="30px" align="center" valign="middle" class="f_td"><?php echo $num; ?></td>
<td width="215px" align="center" valign="middle" class="f_td">
<a href="#" onclick="javascript:Wopen=open('operation.php?action=intro&id=<?php echo $t_rst->fields['id']; ?>','','height=700,width=665,scrollbars=no');">
<?php echo $t_rst->fields['name']; ?>
</a>
</td>
<td width="25px" align="center" valign="middle" class="f_td">
<?php echo $t_rst->fields['downTime']; ?>
</td>
</tr>
<?php
$num++;
$t_rst->MoveNext();
}
?>
</table>