PHP练手:一个小型论坛(带后盾)

WBOY
Release: 2016-06-13 11:54:44
Original
704 people have browsed it

PHP练手:一个小型论坛(带后台)


注册相关函数

<?php //该函数用于处理注册的相关信息验证require_once '../class/connectMysql.php';//检查表单是否填写完整function filled($form_var){	foreach ($form_var as $key=>$value){		if (!isset($key) || ($value=='')){			return false;		}		return true;	}}//验证邮箱是否有效function verifyemail($email){	if (@ereg('^[a-zA-Z0-9_\.\-]+@([a-zA-Z0-9][a-zA-Z0-9\-]*\.)+[a-zA-Z]+$', $email)){		return true;	}else {		return false;	}}//检查用户名是否已经存在//$connectmysql为数据库连接对象function verifyname($username,$connectmysql){	$sql="select * from db_reglog where username='$username'";	$res=$connectmysql->getRowsNum($sql);	if ($res !=''){		return true;	}else {		return false;	}	}//将注册信息写入数据库//$connectmysql为数据库连接对象function register($name,$passd,$email,$connectmysql){	$sql="insert into db_reglog values('$name',sha1('$passd'),'$email','')";	$res=$connectmysql->uidresult($sql);	if ($res != ''){		return true;	}else {		return false;	}	}
Copy after login


目录结构



论坛首页



内容页



下载地址:http://pan.baidu.com/share/link?shareid=3104998419&uk=1094580398


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!