📄 hots.php
字号:
<?
include_once("globla.php");
require $movie_root.("/Connections/showmov.php");
?>
document.write("<TABLE cellSpacing=0 cellPadding=2 width=\"85%\" align=center border=0>");
document.write(" <TBODY>");
<?
$typeid=$_GET['typeid'];
if (!$typeid)
{
$sql="select id,title from jdzcnnet_movie where hidden=0 and looklevel<=1 order by hits desc limit 0,10";
}
else
{
$sql="select id,title from jdzcnnet_movie where hidden=0 and looklevel<=1 and class='".$typeid."' order by hits desc limit 0,10";
}
//echo $sql;
$reslut=mysql_query($sql);
$t=0;
while($rs=mysql_fetch_array($reslut))
{
$t=$t+1;
?>
document.write("<TR>");
document.write("<TD scope=row height=20><IMG height=13 src=img/08_0<?=$t?>.gif width=16 align=absMiddle border=0>");
document.write("<a href=\"show.php?id=<?=$rs[id]?>\" title=\"<?=$rs[title]?>\"><?=$rs[title]?></TD>");
document.write(" </TR>");
<?
}
?>
document.write(" </TBODY>");
document.write("</TABLE>");
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -