我在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";
}
?>
它有什么问题?
答案 0 :(得分:0)
在你的php文件中:
ini_set('display_errors', 1);
在.htaccess文件中:
php_flag display_errors 1