Example #1
0
	<li><a href="#"><strong>文章</strong></a></li>
	<li><a href="#">编辑</a></li>
</ol>
<div class="am-form am-form-horizontal">
    <div class="am-form-group" style="height:40px">
        <label class="am-u-md-2 am-u-md-offset-3 am-form-label am-text-center">文章标题:</label>
        <div class="am-u-md-3 am-u-end">
            <input type="text" placeholder="原来的标题" id="article_new_title"/>
        </div>		
    </div>
    <div class="am-form-group" style="height:40px">
        <label class="am-u-md-2 am-u-md-offset-3 am-form-label am-text-center">文章类别:</label>
        <div class="am-u-md-3 am-u-end">
            <select name="test" id="article_new_catID">
			<?php 
foreach ($article->getArtCatInfo() as $item) {
    ?>
                <option value="<?php 
    echo $item['code'];
    ?>
"><?php 
    echo $item['name'];
    ?>
</option>
			<?php 
}
?>
            </select>
        </div>
    </div>
	<div class="am-form-group" style="height:40px">