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

📄 register.php

📁 bmb的论坛
💻 PHP
字号:
<?
/*
 BMForum Plus! Bulletin Board Systems
 Version : Plus!
 
 This is a freeware, but don't change the copyright information.
 A SourceForge Project - GNU Licence project.
 Web Site: http://www.bmforum.com
 Copyright (C) Bluview Technology
*/
require("datafile/config.php");
require("getskin.php");
include("template.php");
require("lang/$language/usercp.php");
include("datafile/reginfo.php");


if(strtolower("鏌抽奔")=="鏌抽奔") $addusername=strtolower($addusername);

$usergroupinfofile="datafile/groupinfo.php";
if (file_exists($usergroupinfofile)) require("datafile/groupinfo.php");
if (file_exists("datafile/regipbans.php"))  $term_bannedmembers = file("datafile/regipbans.php");
	if (!empty($term_bannedmembers)) {
	$count = count($term_bannedmembers);
	for ($i=0; $i<$count; $i++) {
		$bannedip = trim($term_bannedmembers[$i]);
		if (!$bannedip) continue;
		if ( strpos($ip , $bannedip)===0 ) {
			include("header.php");
			print_bar();
			msg_box($reglang[0],$reglang[1]);
			include("footer.php");
			exit;		
		}
	}
}
$cancel_guestfile="reglog";
$add_title=" &gt; $reglang[2]";
$newuserfile = "datafile/newuser.php";
$nowhours=gmdate("H",$datestime);
$ddwtail=explode("|",$recclose);
if ($reg_stop==0 || ($nowhours<$ddwtail[0] || $nowhours>=$ddwtail[1])) {
	include("header.php");
	print_bar();
	msg_box($reglang[3],$reglang[4]);
	include("footer.php");
	exit;
}

if ($action==check) {
	if (file_exists("datafile/bannames.php")) {
		include("datafile/bannames.php");
		if ($bannames && array_search_value($addusername,$bannames)=="banned") { echo "$reglang[5]";  exit; }
	}
	if (file_exists("$id_unique/".urlencode($addusername).".php")) { echo "$reglang[6]"; }else{ echo "$reglang[7]"; }
	exit;
}

if ($login_status==1 && !$step) {
	include("header.php");
	print_bar();
//-----涓嬮潰杈撳嚭涓嶈

⌨️ 快捷键说明

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