index.php

来自「极酷的PHP文本留言本」· PHP 代码 · 共 83 行

PHP
83
字号
<?php
require_once('./global.php');
session_start();
error_reporting(7);
if(phpversion()>="4.1.0"){
	extract($_REQUEST);
}
$myfile="index.php";
$myfilemenu="index";
$page=$HTTP_GET_VARS['page'];
if(!is_int($page)){$page=intval($page);}
if($page==""){$page=1;}
$nowtime=time();
$ip=ip();
BadnessIp();

$HTTP_POST_VARS['menu'] = trim($HTTP_POST_VARS['menu']);
if($HTTP_POST_VARS['menu']=="savedata"){
	$username=$HTTP_POST_VARS[username];
	$useremail=$HTTP_POST_VARS[useremail];
	$useroicq=$HTTP_POST_VARS[useroicq];
	$userhomepage=$HTTP_POST_VARS[userhomepage];
	$usersex=$HTTP_POST_VARS[usersex];
	$headportrait=$HTTP_POST_VARS[headportrait];
	$posticon=$HTTP_POST_VARS[posticon];
	$content=$HTTP_POST_VARS[content];
	AddGuestContent($username,$useremail,$useroicq,$userhomepage,$usersex,$headportrait,$posticon,$content);
Foot();
exit;
}


Head();
Top();
switch($action){
	case "add";
		ShowFormAdd();
	break;
	case "search";
		$line = openfile($con[data_path].$con[data_name]);
		$HTTP_POST_VARS['keyword']=="" ? $keyword=$HTTP_GET_VARS['keyword'] : $keyword=$HTTP_POST_VARS['keyword'];
	
		for($W=1;$W<=count($line)-1;$W++){
			if($line[$W]=="") break;
			if (substr_count(@strip_tags($line[$W]),$keyword)!=0) {
				$searcharray[]=$line[$W];
			}
		}
		$j=0;$l=0;$nextint=0;
		$j = count($searcharray);
		$l = $j / $con[perpage];
		$nextint=ceil($l);
		if($con[post_position]=="1"){
			$con["post_terseness"] = "1";
			ShowFormAdd();
		}
		ShowSearchList($page);
		PageLib($page);
		if($con[post_position]=="2"){
			$con["post_terseness"] = "1";
			ShowFormAdd();
		}
	break;
	default:
		$line = openfile($con[data_path].$con[data_name]);
		$j=0;$l=0;$nextint=0;
		$j = count($line)-1;
		$l = $j / $con[perpage];
		$nextint=ceil($l);
		if($con[post_position]=="1"){
			$con["post_terseness"] = "1";
			ShowFormAdd();
		}
		ShowContentList($page);
		PageLib($page);
		if($con[post_position]=="2"){
			$con["post_terseness"] = "1";
			ShowFormAdd();
		}
}
Foot();
exit;
?>

⌨️ 快捷键说明

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