douge3492 2016-01-05 14:30
浏览 614
已采纳

未捕获的错误:调用未定义的函数mysql_escape_string()

Fatal error: Uncaught Error: Call to undefined function mysql_escape_string() in C:\xampp\htdocs\phoenixprojectegister.php:16 Stack trace: #0 {main} thrown in C:\xampp\htdocs\phoenixprojectegister.php on line 16

How to fix this?

<?php
require("config.php");
?>
<?php
if(isset($_POST['submit'])){

$email1 = $_POST['email1'];
$email2 = $_POST['email2'];
$pass1 = $_POST['pass1'];
$pass2 = $_POST['pass2'];

if($email1 == $email2) {
    if($pass1 == $pass2) {
//All good. Nastavi broo.

$name = mysql_escape_string($_POST['name']);
$lname = mysql_escape_string($_POST['lname']);
$uname = mysql_escape_string($_POST['uname']);
$email1 = mysql_escape_string($email1);
$email2 = mysql_escape_string($email2);
$pass1 = mysql_escape_string($pass1);
$pass2 = mysql_escape_string($pass2);

mysql_query("INSERT INTO `users` (`id`, `name`, `lname`, `uname`, `email`, `pass`) VALUES (NULL, '$name', '$lname', '$uname', '$email1', '$pass1')") or die (mysql_error());



}else{
  echo "Sorry, your password is not corrext.";
  exit();
}
}else{
  echo "Sorry!";
}

} // brace for submit conditional

$form = <<<EOT
<form action="register.php" method="POST">
First Name: <input type="text" name="name" /></br>
Last Name: <input type="text" name="lname" /></br>
Username: <input type="text" name="uname" /></br>
Email: <input type="text" name="email1" /></br>
Confirm Email: <input type="text" name="email2" /></br>
Password: <input type="password" name="pass1" /></br>
Confirm Password: <input type="password" name="pass2" /></br>
<input type="submit" value="Register" name="submit" />
</form>
EOT;
echo $form;

?>

Well I know that I was try to mix mysql and mysqli....

  • 写回答

4条回答 默认 最新

  • dsour68888 2016-01-05 14:53
    关注

    To help you out here... (too long for a comment)

    Your require("config.php"); should contain the following:

    Sidenote: Use the proper settings for your host.

    $link = mysqli_connect("localhost", "username", "mpassword", "database") or die($link);
    

    Then changing your escape functions to use the mysqli_ version of it and passing the connection parameter to it:

    $name = mysqli_real_escape_string($link, $_POST['name']);
    $lname = mysqli_real_escape_string($link, $_POST['lname']);
    $uname = mysqli_real_escape_string($link, $_POST['uname']);
    $email1 = mysqli_real_escape_string($link, $email1);
    $email2 = mysqli_real_escape_string($link, $email2);
    $pass1 = mysqli_real_escape_string($link, $pass1);
    $pass2 = mysqli_real_escape_string($link, $pass2);
    

    Again, same thing for the query. Using the i version and passing connection to it as the first parameter.

    mysqli_query($link, "INSERT INTO ...
    

    Check for errors on your query using mysqli_error($link);

    So you could modify the query to read as

    $query = mysqli_query($link, "INSERT INTO ...
    

    and doing

    if(!$query){
       echo "Error: " . mysqli_error($link);
       }
    

    Also read the following on Stack in regards to API mixing:

    • Can I mix MySQL APIs in PHP?
    • You can't. mysql_ with mysqli_ or PDO etc. do NOT intermix together. You must use the same one from connecting to querying.

    Footnotes.

    Passwords

    I also noticed that you may be storing passwords in plain text. This is not recommended. If you intend on going LIVE with this at some point, do NOT store passwords as plain text in your database.

    Consult the following.

    Other links:

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置