⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 show_this_all.php

📁 无刷新技术AJAX,就是在不刷新网页的情况下更新网站内容
💻 PHP
字号:
<?
header( "Content-type: text/html; charset=gbk");
header( "Last-Modified: " . gmdate( "D, d M Y H:i:s" ) . " GMT" );
header( "Cache-Control: no-cache, must-revalidate" );
header( "Pragma: no-cache" );

?>
<?php

require_once("../inc/loaddata.inc");

$msg="";
$listno = 0;//设定每页取出的长度;
if(isset($_GET["listno"])){
	if($_GET["listno"] > 0) $listno = $_GET["listno"];
}else{
  echo "无数据:)";return;
}
if($listno > $totalNumber){
	echo "请求发生错误,不存在该条数据。";
	exit;
}	
$filelineThis = split("\t",$filearray[$listno]);

for($i=0 ; $i< strlen($filelineThis); $i++ ){
	 if($i == 1)echo stripslashes($filelineThis[$i]);//只输出内容;
}

?>

⌨️ 快捷键说明

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