0

こんにちは、みんな

データベース内の情報を表示できるWebサイトを作成(コピー)しました。しかし、私が持っているコードは、すべてのボットとメンバーを表示します。

ローカルホストに接続しています。データベースはphpbb3です。

group_idが6のボットを取り除くために刺す必要があります。

これが私のコードです

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
        <title>View Records</title>
</head>
<body>

<?php
/* 
        VIEW.PHP
        Displays all data from 'phpbb_users' table
*/

        // connect to the database
        include('connect-db.php');

        // get results from database
        $result = mysql_query("SELECT * FROM phpbb_users") 
                or die(mysql_error());  

        // display data in table
        echo "<p><b>View All</b> | <a href='view-paginated.php?page=1'>View Paginated</a></p>";

        echo "<table border='1' cellpadding='10'>";
        echo "<tr> <th>ID</th> <th>Username</th> <th>Email</th> <th></th> <th></th></tr>";

        // loop through results of database query, displaying them in the table
        while($row = mysql_fetch_array( $result )) {

                // echo out the contents of each row into a table
                echo "<tr>";
                echo '<td>' . $row['user_id'] . '</td>';
                echo '<td>' . $row['username'] . '</td>';
                echo '<td>' . $row['user_email'] . '</td>';
                echo '<td><a href="edit.php?id=' . $row['user_id'] . '">Edit</a></td>';
                echo '<td><a href="delete.php?id=' . $row['user_id'] . '">Delete</a></td>';
                echo "</tr>"; 
        } 

        // close table>
        echo "</table>";
?>
<p><a href="new.php">Add a new record</a></p>

</body>
</html> 

ありがとう、高度に。

4

1 に答える 1

0

これを変える:

$result = mysql_query("SELECT * FROM phpbb_users")

$result = mysql_query("SELECT * FROM phpbb_users WHERE group_id <> 6")
于 2013-01-29T23:26:05.600 に答える