list.php

来自「这 是一个用php开发出来的视频播放器的源码」· PHP 代码 · 共 52 行

PHP
52
字号
<?
session_start();
?>
<html>
<head>
<META HTTP-EQUIV='Content-Type' CONTENT='text/html; charset=euc-kr'>
<META HTTP-EQUIV='imagetoolbar' CONTENT='no'>
<script>
 function listen(source, subject) {
   parent.document.rupang.FileName=source;
   parent.document.signform.subject.value=subject;
  }
 function InfoMation(uid) {
   location.href = "infomation.php?uid=" + uid;
 }
  </script> 
  <? include "include/include.css"; ?>
  <? include "include/connection.php"; ?>
  </head>
  <body topmargin=10 leftmargin=0 oncontextmenu="return false" onselectstart="return false" ondragstart="return false">
<div align=right><a href="login.php"><img src='images/i_admin.gif' border=0></a>&nbsp;<br>&nbsp;</div>
<table width='380' border=0 cellpadding=3 cellspacing=0 align=center>
<tr bgcolor=#f6f6f6 height=30>
<td style="border-top:1 solid #e6e6e6; border-bottom:1 solid #e6e6e6"><img src='images/subject.gif' align=center></td>
<td style="border-top:1 solid #e6e6e6; border-bottom:1 solid #e6e6e6"><b>Audiovisual Aids List</b></td>
<td style="border-top:1 solid #e6e6e6; border-bottom:1 solid #e6e6e6"><img src='images/info.gif'></td>
</tr>
<?

$sql = "select * from rupang_av order by uid desc;";
$result = mysql_query($sql);

while($rows=mysql_fetch_object($result)) {
$my_uid = $rows->uid;
$my_subject = $rows->subject;
$my_source = $rows->source;
$my_url = $rows->url;
$my_comment = $rows->comment;
$my_signdate = date("Y-m-d", $rows->signdate);

?>
<tr height=30 onmouseover="this.style.background='#f6f6f6'; this.style.cursor='hand';" onmouseout="this.style.background=''">
<td width='7%' style="border-bottom:1 solid #e6e6e6;"><img src='images/subject.gif' align=center></td>
<td width='86%' style="border-bottom:1 solid #e6e6e6;" valign=middle><a href="#null" onClick="listen('<? echo $my_url ?>', '<? echo $my_subject ?>')" onfocus="blur()" onMouseOver="status='';return true;" onMouseOut="status=''" OnMousedown="status=''"><? echo $my_subject ?></a></td>
<td width='7%' style="border-bottom:1 solid #e6e6e6;"><a href="javascript:InfoMation('<? echo $my_uid ?>')" onfocus="blur()"><img src='images/info.gif' border=0 alt="悼康惑 沥焊"></a></td>
</tr>
<?
}
?>
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?