猿问

新人求助,登录和注册界面该如何完善?代码如下?

login.php:

<meta http-equiv='Content-Type' content='text/html;charset=utf-8'/>
<?php
error_reporting(E_ALL ^ E_DEPRECATED);
header("Content-Type: text/html;charset=utf-8");

$conn =@mysql_connect("localhost","root","");
if(!$conn){
   die("连接数据库失败:".mysql_connect());

}

if (empty($_POST['name']) || empty($_POST['password']) ) {
   echo "不能为空";
}
else
{
   echo $_POST['name'] ."登陆成功。 ";
}



register.php:

<meta http-equiv='Content-Type' content='text/html;charset=utf-8'/>
<?php
error_reporting(E_ALL ^ E_DEPRECATED);
$link=mysql_connect("localhost","root","");
if (!$link)
{
   die('Could not connect: ' . mysql_error());
}

mysql_select_db("test", $link);

$sql="INSERT INTO test (name,password )
VALUES
('$_POST[name]','$_POST[password]')";

if (!mysql_query($sql,$link))
{
   die('Error: ' . mysql_error());
}
else {
   echo "注册成功,信息已录入。";

}


听风呢喃细语
浏览 1447回答 2
2回答

qq_大寒_2

可以用ajax还有这程序会被sql注入,可以完善地方很多

茫海

先占坑,有空给你写一个简单的
随时随地看视频慕课网APP
我要回答