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

📄 change_name.php

📁 中国象棋online web版的线上棋牌游戏。 能建房间
💻 PHP
字号:
<?php
include "./functions.php";
include "./dbconnect.php";
if($_POST[name] == '')
{
	setcookie(message, 名字不能为空!);
	header("location:index.php");
	exit;
}
if(strlen($_POST[name]) > 25)
{
	setcookie(message, 名字太长了,25个字符以内!);
	header("location:index.php");
	exit;
}
$query = mysql_query("select count(*) as 'num' from `room` where `host` = '".$_POST[name]."' or `guest` = '".$_POST[name]."' limit 1");
if(@mysql_result($query, 0, num))
{
	setcookie(message, 抱赚,这个名字已经有人在使用了!);
	header("location:index.php");
	exit;
}
setcookie(username, str_replace("<", "&lt;", str_replace(">", "&gt;", $_POST[name])));
header("location:index.php");
?>

⌨️ 快捷键说明

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