0 Star 0 Fork 0

Dawnki/articlesystem

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
MainPage_Create_handle.php 898 Bytes
一键复制 编辑 原始数据 按行查看 历史
Dawnki 提交于 2015-12-07 22:10 . add
<?php
require_once('MysqlConnect.php');
$username=$_POST['username'];
if(!$username) {
echo "<script>alert('注册失败,账号不能为空');window.location.href='MainPage_Create.php'</script>";
exit();
}
$password=$_POST['password'];
if(!$password) {
echo "<script>alert('注册失败,密码不能为空');window.location.href='MainPage_Create.php'</script>";
exit();
}
$password1=$_POST['password1'];
if($password1!=$password) {
echo "<script>alert('注册失败,两次输入的密码不一样');window.location.href='MainPage_Create.php'</script>";
exit();
}
$ins="Insert userlist (username,password) values('$username','$password')";
if(mysql_query($ins)) echo "<script>alert('注册成功');window.location.href='MainPage.php'</script>";
else echo "<script>alert('注册失败,账号已被注册');window.location.href='MainPage_Create.php'</script>";
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/dawnki/articlesystem.git
git@gitee.com:dawnki/articlesystem.git
dawnki
articlesystem
articlesystem
master

搜索帮助