data1.php
来自「PHP免费网摘程序 详细说明: 安装说明: 1、把文件上穿上去以后」· PHP 代码 · 共 48 行
PHP
48 行
<?
$id=$_GET[id];
$max=$_GET['max'];
if(!$id) $id=1;
$good=$_GET[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("datamb1.php");
mysql_close($connect);
if($id<$max){
$id=$id+1;
echo "<meta http-equiv='refresh' content='0;URL=data1.php?id=$id&max=$max'>";
}
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?