php中的注册和登录脚本出现500错误

时间:2018-01-05 11:45:37

标签: php

我在php中为注册脚本编写了这段代码,这是连接到我的数据库(它的工作正常) 但在我的剧本中有什么不对?它不起作用并得到500错误。

<?php
// If the values are posted, insert them into the database.
if (isset($_POST['username']) && isset($_POST['password']) && isset($_POST['email'])){
    $username = $_POST['username'];
    $email = $_POST['email'];
    $password = $_POST['password'];
    $this->db->exec("INSERT INTO register (user, pass, email) VALUES ('$username', '$password', '$email')");
    echo "ssdds";
}
?>

它有什么问题?

1 个答案:

答案 0 :(得分:0)

如果您的php代码有致命错误但关闭了错误显示,则会显示<500>内部服务器错误。您可以尝试此操作来查看错误本身而不是500错误页面

在你的php文件中:

ini_set('display_errors', 1);

在.htaccess文件中:

php_flag display_errors 1