forumpw.php

来自「一个可以实时查看股票行情的小程序,真是一个好程序哦,直得大家」· PHP 代码 · 共 22 行

PHP
22
字号
<?php
!function_exists('readover') && exit('Forbidden');

global $wind_action,$wind_password;
if(!$wind_action){
	global $printmsgpwd,$tplpath;
	$tplpath='wind';
	include PrintEot('forumpwd');
	Showmsg('forumpw_needpwd');
} else{
	if($forum['password']==md5($wind_password) && $groupid!='guest'){
		/**
		* 不同版块不同密码
		*/
		Cookie("pwdcheck$fid",$forum['password']);
	} elseif($groupid=='guest'){
		Showmsg('forumpw_guest');
	} else{
		Showmsg('forumpw_pwd_error');
	}
}
?>

⌨️ 快捷键说明

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