📄 makeall.php
字号:
<?
$id=$_GET[id];
$max=$_GET['max'];
if(!$id) $id=1;
$good=$_GET[good];
if($id%80==0 && $good!="good")
{
echo "<meta http-equiv='refresh' content='0;URL=data.php?id=$id&max=$max&good=good'>";
}
?><? include("conn.php");?>
<? include("include/function.php");?>
<? include("include/file.php");?>
<?
ob_end_clean();
if(!$max){
$qr=mysql_query("select * from zhai order by id desc");
$rs=mysql_fetch_array($qr);
$title=$rs[title];
$fromurl=$rs[fromurl];
$max=$rs[id];
}
ob_start();
require_once("datamb.php");
if($id<$max){
$id=$id+1;
header("Location:?id=$id&max=$max");
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -