<?php /** * 流量主添加/编辑 * $Id: channel_mst_edit.inc,v 1.1 2015/10/08 11:18:53 wanggb Exp $ * @author zongbiao * @access public * @package manager.templates **/ global $upload_thumbnail; global $thumbnail_error_msg; ?> <b>渠道添加/编辑</b><br /> <br /> <form name="channel_edit_form" action="channel_edit_result.php" method="post" enctype="multipart/form-data"> <input type="hidden" name="action_type" value="<?=$action_type ?>" /> <input type="hidden" name="id" value="<?=$id ?>" /> <table> <tr> <td>渠道编号</td> </tr> <tr> <td class="begin_blank"> <input type="text" id="channel_no" name="channel_no" value="<?=htmlspecialchars($channel_mst->channel_no) ?>" size=12 readonly/> </tr> <tr> <td>渠道名称</td> </tr> <tr> <td class="begin_blank"> <input type="text" id="title" name="title" value="<?=htmlspecialchars($channel_mst->title) ?>" size=15/> </tr> <tr> <td>备注</td> </tr> <td class="begin_blank"> <textarea name="comment" cols="30" rows="3"><?=htmlspecialchars($channel_mst->comment) ?></textarea> </td> </tr> </table> <br /> <br /> <input type="button" value="编集/添加" class="button_width_normal" onClick="doCheck();"/> </form>