这是用户类。
<?php
class User {
/*
*public static function get_all_users()
*/
public function get_all_users() {
global $link;
$result_set = $link->query("SELECT * FROM `user`");
return $result_set;
}
}
上面的类是用户类我制作的对象但无法访问。显示html的所有使用页面:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Cp1252">
<title>Admin Panel ::: </title>
</head>
<body>
<h3>Users :</h3>
<table border="1">
<tr>
<th>S.N</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
<th>Password</th>
<th>E-mail</th>
<th>Contact</th>
<th colspan="2">Option</th>
</tr>
<?php
$user = new User();
$result_set = $user->get_all_users();
/*
*$result_set = User :: get_all_users(); - accessing user class using static keyword.
*/
$i = 1;
while ($row = mysqli_fetch_assoc($result_set)) {
?>
<tr>
<td><?php echo $row['id']; ?></td>
<td><?php echo $row['first_name']; ?></td>
<td><?php echo $row['last_name']; ?></td>
<td><?php echo $row['username']; ?></td>
<td><?php echo $row['password']; ?></td>
<td><?php echo $row['email']; ?></td>
<td><?php echo $row['Contact']; ?></td>
<td><a href="">Update</a></td>
<td><a href="">Delete</a></td>
</tr>
<?php
$i++;
}
?>
</table>
</body>
</html>
当我创建用户类的对象并且用户类在内部包含文件夹时,我无法访问用户类,而HTML文件下面是admin文件夹或admin ->viewuser.php
和admin->includes->user.php
,它给出了错误。
答案 0 :(得分:2)
您需要在viewuser.php脚本中包含该User类!
include_once("includes/user.php");
我不确定如何组织你的文件夹这是最好的方法,但它应该有用。