當前位置: 首頁>>代碼示例>>PHP>>正文


PHP model::select方法代碼示例

本文整理匯總了PHP中model::select方法的典型用法代碼示例。如果您正苦於以下問題:PHP model::select方法的具體用法?PHP model::select怎麽用?PHP model::select使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在model的用法示例。


在下文中一共展示了model::select方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1:

        </ul></td>
      <td>實版塊:可發布內容,虛版塊:可用以虛鏈接與索引鏈接,不能發布內容</td>
    </tr>
    <tr>
      <td class="td80">副版塊名稱:</td>
      <td class="vtop rowform"><input name="subname" id="subname" value="<?php 
echo $rs['subname'];
?>
" type="text" class="txt"  /></td>
      <td>副版塊名稱</td>
    </tr>
    <tr>
      <td class="td80">所屬模型:</td>
      <td class="vtop rowform"><select name="modelid" id="modelid">
          <?php 
echo model::select($rs['mid']);
?>
        </select></td>
      <td>本版塊的上級版塊或分類</td>
    </tr>
    <tr>
      <td class="td80">顯示版塊:</td>
      <td class="vtop rowform"><ul onmouseover="altStyle(this);">
          <li<?php 
if ($rs['status'] == '1') {
    echo ' class="checked"';
}
?>
>
            <input class="radio" type="radio" name="status" value="1" <?php 
if ($rs['status'] == '1') {
開發者ID:idreamsoft,項目名稱:iCMS5.0,代碼行數:31,代碼來源:forums.add.php

示例2: model

<?php

require_once "../model/model.php";
$first = $_GET['first'] ? $_GET['first'] : 0;
$news = new model("news");
echo $news->select($first);
開發者ID:phpcyy,項目名稱:static,代碼行數:6,代碼來源:news.php

示例3:

?>
" style="width:80px">
        <select name="st" id="st">
          <option value="title"<?php 
$_GET['st'] == 'title' && (print ' selected="selected"');
?>
>標題</option>
          <option value="contents"<?php 
$_GET['st'] == 'contents' && (print ' selected="selected"');
?>
>評論內容</option>
        </select>
    	模型
    	<select name="mid" id="mid">
          <?php 
echo model::select($_GET['mid']);
?>
        </select>
        <input type="text" name="keywords" class="txt" id="keywords" value="<?php 
echo $_GET['keywords'];
?>
" size="30" />
        每頁顯示
        <input type="text" name="perpage" class="txt" id="perpage" value="<?php 
echo $_GET['perpage'] ? $_GET['perpage'] : 20;
?>
" style="width:30px;" />
        <select name="status" id="status">
          <option value="-1">狀態</option>
          <option value="1"<?php 
$_GET['status'] == '1' && (print ' selected="selected"');
開發者ID:idreamsoft,項目名稱:iCMS5.0,代碼行數:31,代碼來源:comment.php

示例4: empty

?>
" />
  <table class="adminlist">
    <thead>
      <tr>
        <th colspan="3"><?php 
echo empty($fid) ? '添加' : '編輯';
?>
字段</th>
      </tr>
    </thead>
    <tr>
      <td class="td80">所屬模塊:</td>
      <td class="rowform"><select name="mid" id="mid" disabled="disabled">
    	 <?php 
echo model::select($mid);
?>
        </select></td>
      <td class="tips2"></td>
    </tr>
    <tr>
      <td class="td80">名稱:</td>
      <td class="rowform"><input name="name" type="text" id="name" value="<?php 
echo $rs['name'];
?>
" class="txt" style="width:160px;"/>
        <input name="hidden" type="checkbox" id="hidden" value="1" class="checkbox" />
        隱藏字段</td>
      <td class="tips2">隱藏字段 將不會在表單上顯示</td>
    </tr>
    <tr>
開發者ID:idreamsoft,項目名稱:iCMS5.1,代碼行數:31,代碼來源:models.addfield.php

示例5:

        </ul></td>
      <td>實版塊:可發布內容,虛版塊:可用以虛鏈接與索引鏈接,不能發布內容</td>
    </tr>
    <tr>
      <td class="td80">副版塊名稱:</td>
      <td class="rowform"><input name="subname" id="subname" value="<?php 
echo $rs['subname'];
?>
" type="text" class="txt"  /></td>
      <td>副版塊名稱</td>
    </tr>
    <tr>
      <td class="td80">所屬模型:</td>
      <td class="rowform"><select name="modelid" id="modelid">
          <?php 
echo model::select($rs['modelid'], true);
?>
        </select></td>
      <td>本版塊的上級版塊或分類</td>
    </tr>
    <tr>
      <td class="td80">顯示版塊:</td>
      <td class="rowform"><ul onmouseover="altStyle(this);">
          <li<?php 
if ($rs['status'] == '1') {
    echo ' class="checked"';
}
?>
>
            <input class="radio" type="radio" name="status" value="1" <?php 
if ($rs['status'] == '1') {
開發者ID:idreamsoft,項目名稱:iCMS5.1,代碼行數:31,代碼來源:forums.add.php


注:本文中的model::select方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。