123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php defined('IN_ADMIN') or exit('No permission resources.');?>
- <?php include $this->admin_tpl('header', 'admin');?>
- <div class="pad-lr-10">
- <form name="myform" action="?m=mood&c=mood_admin&a=setting" method="post">
- <div class="table-list">
- <table width="100%" cellspacing="0">
- <thead>
- <tr>
- <th align="left" width="40"><?php echo L('on_hand')?></th>
- <th align="left" width="200"><?php echo L('name')?></th>
- <th align="left"><?php echo L('pic')?></th>
- </tr>
- </thead>
- <tbody>
- <?php
- for($i=1; $i<=10; $i++) {
- ?>
- <tr>
- <td align="left"><input type="checkbox" value="1" name="use[<?php echo $i?>]" <?php if($mood_program[$i]['use']==1){echo 'checked';}?>></td>
- <td align="left"><input type="text" name="name[<?php echo $i?>]" value="<?php echo $mood_program[$i]['name']?>"></td>
- <td align="left"><input type="text" name="pic[<?php echo $i?>]" value="<?php echo $mood_program[$i]['pic']?>"><?php if ($mood_program[$i]['pic']) {echo '<img src="'.IMG_PATH.$mood_program[$i]['pic'].'">';}?></td>
- </tr>
- <?php
- }
- ?>
- </tbody>
- </table>
- <div class="btn">
- <input type="submit" class="button" name="dosubmit" value="<?php echo L('submit')?>"/>
- </div>
- </div>
- </form>
- </div>
- </body>
- </html>
|