數(shù)據(jù)庫操作
表:dz_portal_article_title
增加字段:例
`stick` tinyint(1) DEFAULT ‘0’,
`words` smallint(6) NOT NULL DEFAULT ‘0’,
復(fù)制代碼
編輯:/template/default/portal/portalcp_article.htm 208行后增加
<dt>置頂 <input type=”checkbox” id=”stick”
onclick=’this.value=(this.value===”false”)?”true”:”false”;’ name=”stick”
class=”pc” {if ($article[‘stick’]==1)} checked=”checked” value=”true”
{else} value=”false”{/if} /></dt>
<dd>話數(shù) <input type=”text” name=’words’ class=”px p_fre” size=”20″ value='{$article[‘words’]}’/></dd>
復(fù)制代碼
編輯:\source\include\portalcp\portalcp_article.php 86行 $setarr = array( 內(nèi)增加
‘stick’ =>empty($_POST[‘stick’]) ? ‘0’ : ‘1’,
‘words’ => $_GET[‘words’],
復(fù)制代碼
嗯。接下來,就在需要的地方調(diào)用就好了!
例:\template\default\portal\list.htm 在 <!–{loop $list[‘list’] $value}–> 內(nèi)調(diào)用 $value[words]