php连接mysql页面空白_求大神: php注册页面跳转出现空白页
該樓層疑似違規已被系統折疊?隱藏此樓查看此樓
register.php: 我感覺是不是insert這個地方出現問題,我試圖填寫不一樣的密碼但是他并沒有提示錯誤而是跳轉空白頁
session_start();
$con = mysqli_connect('localhost','root','root','digital_wallet');
if(isset($_POST['r_btn'])){
session_start();
$username = mysql_real_escape_string($_POST['username']);
$password = mysql_real_escape_string($_POST['password']);
$password2 = mysql_real_escape_string($_POST['password2']);
if($password == $password2){
//create user
$password = md5($password);//hash password before storing for security purposes
$sql = "INSERT INTO register(username, password,password2) VALUES('$username','$password','$password2')";
mysqli_query($con,$sql);
$_SESSION['message'] = "You are now logged in";
$_SESSION['username'] = $username;
header("location:wallet.php");
}else{
$_SESSION['message'] = "The two passwords do not match";
}
}
?>
RegisterUsername :
Password :
Confirm Password :
Already a member? Login
總結
以上是生活随笔為你收集整理的php连接mysql页面空白_求大神: php注册页面跳转出现空白页的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 求阔字开头的成语接龙!
- 下一篇: python中什么是字符举例说明_第20