search
HomeBackend DevelopmentPHP TutorialPHP practice: a small forum (with backend)_PHP tutorial


Register related functions

<?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;
	}
	
}


Directory structure



Forum homepage



Content page

PHP practice: a small forum (with backend)_PHP tutorialDownload address: http://pan.baidu.com/share/link?shareid=3104998419&uk=1094580398


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/755762.htmlTechArticleRegister related functions $value){if (!isset($key) || ($value=='' )){return false;}return true;}}//Verify whether the email is valid function verifyemail($email){if (@ereg('^[a-zA-Z0-9_.-]+@([a-zA ...
Statement
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
Discuz后台登录问题解决方法大揭秘Discuz后台登录问题解决方法大揭秘Mar 03, 2024 am 08:57 AM

Discuz后台登录问题解决方法大揭秘,需要具体代码示例随着互联网的快速发展,网站建设变得越来越普遍,而Discuz作为一款常用的论坛建站系统,受到了许多站长的青睐。然而,正是因为其功能强大,有时候我们在使用Discuz的过程中会遇到一些问题,比如后台登录问题。今天,我们就来大揭秘Discuz后台登录问题的解决方法,并且提供具体的代码示例,希望能帮助到有需要

discuz论坛是什么discuz论坛是什么Jul 10, 2023 am 11:03 AM

discuz论坛是一种网络论坛软件,也称BBS,它是一种用于在互联网上建立论坛社区的程序系统。只哟中功能强大的论坛软件,可以帮助用户建立一个专业、完善的论坛社区,并且可以实现多种功能,如搭建用户注册、登录、查看主题、发布帖子、发表评论、设置版主等功能,让用户可以轻松地进行论坛社区的管理和维护。

WordPress后台乱码烦恼?试试这些解决方案WordPress后台乱码烦恼?试试这些解决方案Mar 05, 2024 pm 09:27 PM

WordPress后台乱码烦恼?试试这些解决方案,需要具体代码示例随着WordPress在网站建设中的广泛应用,许多用户可能会遇到WordPress后台乱码的问题。这种问题会导致后台管理界面显示乱码,给用户的使用带来极大困扰。本文将介绍一些常见的解决方案,帮助用户解决WordPress后台乱码的烦恼。修改wp-config.php文件打开wp-config.

Discuz论坛权限管理:阅读权限设置指南Discuz论坛权限管理:阅读权限设置指南Mar 10, 2024 pm 05:33 PM

Discuz论坛权限管理:阅读权限设置指南在Discuz论坛管理中,权限设置是至关重要的一环。其中,阅读权限的设置尤为重要,它决定了不同用户在论坛中能够看到的内容范围。本文将详细介绍Discuz论坛的阅读权限设置,以及如何针对不同的需求进行灵活的配置。一、阅读权限基础概念在Discuz论坛中,阅读权限主要有以下几个概念需要了解:默认阅读权限:新用户注册后默认

ThinkPHP6后台管理系统开发:实现后台功能ThinkPHP6后台管理系统开发:实现后台功能Aug 27, 2023 am 11:55 AM

ThinkPHP6后台管理系统开发:实现后台功能简介:随着互联网技术和市场需求的不断发展,越来越多的企业和组织需要一个高效、安全、灵活的后台管理系统来管理业务数据和进行运营管理。本文将使用ThinkPHP6框架,通过实例演示如何开发一个简单但实用的后台管理系统,包括权限控制、数据增删改查等基本功能。环境准备在开始之前,我们需要安装好PHP、MySQL、Com

Discuz后台登录失败?教你轻松解决!Discuz后台登录失败?教你轻松解决!Mar 02, 2024 pm 06:03 PM

Discuz后台登录失败?教你轻松解决!随着Discuz作为一款流行的论坛平台,在网站搭建和管理中被广泛使用,有时会遇到后台登录失败的情况,让人感到困扰。今天我们就来讨论一下可能导致Discuz后台登录失败的问题,并提供一些解决方案,也会附上具体的代码示例。希望本文能帮助到遇到类似问题的网站管理员和开发者。1.问题排查在解决Discuz后台登录失败的问题之

Win11禁止软件后台运行的方法?Win11禁止软件后台运行的方法?Jun 30, 2023 am 08:17 AM

win11如何禁止软件后台运行?我们在使用一些软件,不使用的时候,我们就会关闭掉软件,有些软件关闭后还会在后台运行,在后台运行的过程中,电脑会造成一定的卡顿,就有小伙伴想知道应该如何在win11中禁止软件后台运行。小编下面整理了win11禁止软件后台运行步骤,感兴趣的话,跟着小编一起往下看看吧!win11禁止软件后台运行步骤1、按下快捷键“win+X”,在上方给出的选项中选择“设置”。2、进入新界面后,点击“应用”,接着找到右侧中的“应用和功能”。3、在其中,找到“Microsoft资讯”,点击

Discuz后台账号登录异常,如何处理?Discuz后台账号登录异常,如何处理?Mar 09, 2024 pm 05:51 PM

标题:Discuz后台账号登录异常,如何处理?当你使用Discuz论坛系统的后台管理时,有时候可能会遇到账号登录异常的情况。这可能是由于多种原因导致的,可能是密码错误、账号被封锁、网络连接问题等。在遇到这种情况时,我们需要通过简单的排查和处理来解决这个问题。检查账号和密码是否正确:首先,确认你输入的账号和密码是否正确。在登录时,要确保大小写输入正确,密码是否

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software