⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 view_account.inc

📁 不错的东西
💻 INC
字号:
<form method="post" action="<?=$_SERVER['PHP_SELF']?>">
<fieldset>
<legend>View Account</legend>
<table>
<tr>
	<td><label for="account_id">Account Username:</label></td>
	<td>
	<select name="account_id" id="account_id">
	<?php
	/*
	*  Justin Osterholt
	*  11/26/05
	*  moved html into php
	*/
	$query = $sql->query("SELECT * FROM accounts WHERE level = '0' AND status = '2'");
	while($data = mysql_fetch_assoc($query)) {
		echo "<option value=\"{$data['id']}\">{$data['username']}</option>\n";
	}
	?>
	</select>
	</td>
</tr>
<tr>
	<td colspan="2"><input type="submit" name="View Account" /></td>
</tr>
</table>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -