我创建了一个db类,它有一个methotod来处理与数据库的连接 现在我在其他脚本中使用此方法从SQL DB获取数据并显示在HTML表中。
错误消息: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; }> 致命错误:未捕获错误:在D:\ XAMP \ htdocs \ telepol \ userInfo.php中找不到类'db':5堆栈跟踪:#0 D:\ XAMP \ htdocs \ telepol \ userInfo.php(43):showData( )#5 {main}在第5行的D:\ XAMP \ htdocs \ telepol \ userInfo.php中抛出
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>
答案 0 :(得分:0)
db.php中<? php
的那一行 - 不应该是它们之间的空格