我有一个文件,其中包含我的数据库的所有信息。我有另一个使用此信息的文件。而且我有一个假设从数据库收集信息的功能,但我需要使用mysqli_query
.
我该怎么做呢?
mysqli_query
期待两件事:
- 查询
- 与数据库的连接
但是我与数据库的连接是一个单独的功能。
private $db;
//put your code here
// constructor
function __construct() {
require_once 'DB_Connect.php';
// connecting to database
$this->db = new DB_Connect();
$this->db->connect();
}
// destructor
function __destruct() {
}
public function isUserExisted($email) {
$result = mysqli_query(
这里有什么?
,"SELECT email from users WHERE email = '$email'");
$no_of_rows = mysqli_num_rows($result);
if ($no_of_rows > 0) {
// user existed
return true;
} else {
// user not existed
return false;
}
}