本文整理匯總了PHP中DbUtil::getTable方法的典型用法代碼示例。如果您正苦於以下問題:PHP DbUtil::getTable方法的具體用法?PHP DbUtil::getTable怎麽用?PHP DbUtil::getTable使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類DbUtil
的用法示例。
在下文中一共展示了DbUtil::getTable方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: DbUtil
<?php
//BLIR BRUKT I ADMIN
require_once 'inc/dbutil.php';
$obj = new DbUtil();
$tmpVal = $obj->getTable();
echo "<p class='text-center'>Guild Members</p>";
echo "<table class='table'>";
echo "<tr><th>Character name</th><th>Remove player</th></tr>";
foreach ($tmpVal as $row) {
if ($row['guildmembership'] == 1 && $row['gamerID'] != $_SESSION['gamerID']) {
echo "<tr>";
echo "<td>" . $row['username'] . "</td>";
echo "<td>";
echo "<form action='inc/deleteuser.php' method='post'>";
echo "<input type='hidden' name='deleteuser' value='" . $row['gamerID'] . "'>";
echo "<button type='submit' class='btn btn-danger' >Delete</button>";
echo "</form>";
echo "</td>";
echo "</tr>";
}
}
echo "</table>";
示例2: DbUtil
<?php
require_once 'inc/dbutil.php';
$db = new DbUtil();
$users = $db->getTable();
foreach ($users as $tmpUser) {
echo "<option value='{$tmpUser['gamerID']}' >{$tmpUser['username']}</option>";
}