本文整理汇总了PHP中MyDB::get_all方法的典型用法代码示例。如果您正苦于以下问题:PHP MyDB::get_all方法的具体用法?PHP MyDB::get_all怎么用?PHP MyDB::get_all使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MyDB
的用法示例。
在下文中一共展示了MyDB::get_all方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: MyDB
<input id="appauthname" name="appauthname" type="text" class="input" />
<span>(必填)</span>
<label for="appauthpwd" class="label">授权密码:</label>
<input id="appauthpwd" name="appauthpwd" type="password" class="input" />
<span>(必填)</span>
</center>
<p/>
<table border="1" width="80%" align="center" >
<caption>应用信息表</caption>
<th>选中</th><th>ID</th><th>应用名</th><th>包名</th><th>大小</th><th>版本</th><th>描述</th>
<?php
$dblink = new MyDB();
$qry = "SELECT * FROM appinfo ORDER BY uid desc";
$result = $dblink->get_all($qry);
for ($i = 0; $i < count($result); $i++) {
$appId = $result[$i][uid];
$appName = $result[$i][AppName];
$appPackageName = $result[$i][AppPackageName];
$appSize = $result[$i][AppSize];
$appVersion = $result[$i][AppVersion];
$appDetail = $result[$i][AppDetail];
?>
<tr>
<td>
<input type=checkbox name=del_id[] value=<?php
echo $appId;
?>
/>