123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <link href="<?php echo WEB_SITE_GLOBAL ?>/img/admin/style.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/jquery-1.7.1.min.js"></script>
- <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/admin/over.js"></script>
- <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/admin/admin.js"></script>
- <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/admin/calendar.js"></script>
- </head>
- <body>
- <div class="main_content new_product">
- <div class="crumbbar"><a href="/index/main_navon" target="main">快速导航</a> » <?php echo $data['map']; ?></div>
- <div class="main_toolbar clearfix">
- <div id="append"></div>
-
- <div class="globle_list">
- <form name="systemForm" action="/index/main_system_manage_do" method="post">
- <table cellspacing="0" cellpadding="0" class="tableList">
- <tbody><tr>
- <th class="" width="300">设置名称</th>
- <th class="">内容</th>
- <th></th>
- </tr>
- <tr>
- <td>发布名师答疑后,通知管理员邮箱设置</td>
- <td><input type="text" class="txt" name="set_email_to_admin" style="width:300px" value="<?php echo $data['email']; ?>" /><span>多个邮箱用中横线(-)隔开例:123456@qq.com-456789@qq.com</span></td>
- <td><input type="submit" class="button" name="submit" value="提 交" /></td>
- </tr>
- </tbody></table>
- </form>
- <form name="systemForm" action="/index/main_system_fund_do" method="post">
- <table cellspacing="0" cellpadding="0" class="tableList">
- <tbody>
- <tr>
- <td>普通提问是否使用基金1元当做悬赏</td>
- <td>是:<input type="radio" name="fund" <?php if( $data['fund'] ): ?> checked <?php endif; ?> value="1" />否:<input type="radio" <?php if( $data['fund'] == 0 ): ?> checked <?php endif; ?> name="fund" value="0" /></td>
- <td><input type="submit" class="button" name="submit" value="提 交" /></td>
- </tr>
- </tbody></table>
-
- </form>
- </div>
-
-
- </div>
-
-
- </div>
- </body>
- </html>
|