我創建了一個db類,它有一個methotod來處理與數據庫的連接。
現在我在其他腳本中使用此方法從SQL DB獲取數據並顯示在HTML表中。PHP腳本找不到我需要的類
Error Message:conn = new mysqli($this->_host, $this->_username, $this->_psw, $this->_dbName); if ($this->_conn->connect_error){ die("Connection failed: " . $this->_conn->connect_error); } } public function getCon(){ return $this->_conn; } } ?> Fatal error: Uncaught Error: Class 'db' not found in D:\XAMP\htdocs\telepol\userInfo.php:5 Stack trace: #0 D:\XAMP\htdocs\telepol\userInfo.php(43): showData() #1 {main} thrown in D:\XAMP\htdocs\telepol\userInfo.php on line 5
db.php
<? php
class db{
private $_conn;
private $_host = "localhost";
private $_username = "root";
private $_psw = "";
private $_dbName = "users";
public function __construct(){
$this->_conn = new mysqli($this->_host, $this->_username, $this->_psw, $this->_dbName);
if ($this->_conn->connect_error){
die("Connection failed: " . $this->_conn->connect_error);
}
}
public function getCon(){
return $this->_conn;
}
}
?>
userInfo.php
- 這將顯示在HTML表中的數據的腳本
<?php
require_once 'classes/db.php';
function showData(){
$conn = new db();
$br = 1; //br is used to displat the number of each row in the table.
$userQuery = "SELECT* FROM users";
$result = $conn->getCon()->query($userQuery);
if ($result->num_rows > 0) {
while ($row = $result->fetch_assoc()) {
echo "<tr> <td>" .$br ."</td> <td>" .$row["first_name"] ."</td> <td>" .$row["last_name"] ."</td> <td>" .$row["nickname"] ."</td> <td>" .$row["user_id"] ."</td> <br>" ;
$br ++;
}
}
$conn->close();
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Users Info</title>
<!-- adding JS scripts -->
<script type="text/javascript" src="jquery-3.1.1.min.js"></script>
<!-- adding css -->
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- my CSS -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<table class="table table-striped table-bordered table-hover table-sm">
<thead class="thead-default">
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Nickname</th>
<th>User ID</th>
</tr>
</thead>
<?php showData(); ?>
</table>
</body>
</html>
你有一個錯字,因爲你的腳本不被識別爲php:'<? php'應該是'<?php'。這就是爲什麼你看到你的代碼在構造函數中的第一個'>'符號之後回顯出來的原因。在瀏覽器的源代碼中,您將看到完整的數據庫腳本。 – jeroen
謝謝!這是一個錯字...花了4個小時,試圖修復一個錯字。 現在我收到以下消息:致命錯誤:未捕獲錯誤:調用D:\ XAMP \ htdocs \ telepol \ userInfo.php中未定義的方法db :: close():16堆棧跟蹤:#0 D:\ XAMP \ htdocs \ telepol \ userInfo.php(43):showData()#1 {main}扔在第16行的D:\ XAMP \ htdocs \ telepol \ userInfo.php上 你能告訴我如何解決它嗎? –
修正了它。我做了一個關閉連接的方法。 –