我不知道如何解決這個問題:你怎麼解決這個錯誤的MySQL
編輯:可有人剛好與改正編輯我的代碼,因爲這是由於tmrw。
Fatal error: Uncaught Error: Call to undefined function mysql_connect() in C:\xampp\htdocs\login\login-registration-php\login-registration-php-new\dbconnect.php:6 Stack trace: #0 C:\xampp\htdocs\login\login-registration-php\login-registration-php-new\index.php(4): require_once() #1 {main} thrown in C:\xampp\htdocs\login\login-registration-php\login-registration-php-new\dbconnect.php on line 6
<?php
// this will avoid mysql_connect() deprecation error.
error_reporting(~E_DEPRECATED & ~E_NOTICE);
// but I strongly suggest you to use PDO or MySQLi.
$conn = mysql_connect(localhost,nathan,password);
$dbcon = mysql_select_db(dbtest);
if (!$conn) {
die("Connection failed : " . mysql_error());
}
if (!$dbcon) {
die("Database Connection failed : " . mysql_error());
}
通過前進到新庫: - 'mysqli_ *'或'PDO':-https://prnt.sc/gubvir –
在谷歌上進行一些搜索,您將得到爲什麼會出現錯誤。不要在沒有任何努力的情況下發布問題 –
可能的重複[爲什麼我不應該在PHP中使用mysql \ _ \ *函數?](https://stackoverflow.com/questions/12859942/why-shouldnt-i-use- mysql-functions-in-php) –