makeall.php

来自「PHP免费网摘程序 详细说明: 安装说明: 1、把文件上穿上去以后」· PHP 代码 · 共 46 行

PHP
46
字号
<?
$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 + =
减小字号Ctrl + -
显示快捷键?