當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Utility::Option方法代碼示例

本文整理匯總了PHP中Utility::Option方法的典型用法代碼示例。如果您正苦於以下問題:PHP Utility::Option方法的具體用法?PHP Utility::Option怎麽用?PHP Utility::Option使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Utility的用法示例。


在下文中一共展示了Utility::Option方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: htmlspecialchars

            <div class="box-top"></div>
            <div class="box-content">
                <div class="head">
					<h2>代金券</h2>
					<ul class="filter">
						<li><form method="get">項目ID:<input type="text" name="tid" value="<?php 
echo htmlspecialchars($tid);
?>
" class="h-input" />&nbsp;商戶ID:<input type="text" name="pid" value="<?php 
echo htmlspecialchars($pid);
?>
" class="h-input" />&nbsp;代號:<input type="text" name="code" value="<?php 
echo htmlspecialchars($code);
?>
" class="h-input" />&nbsp;狀態:<select name="state"><?php 
echo Utility::Option($usage, $state, '所有');
?>
</select>&nbsp;<input type="submit" value="篩選" class="formbutton"  style="padding:1px 6px;"/>&nbsp;<input type="submit" name="download" value="下載" class="formbutton"  style="padding:1px 6px;"/><form></li>
					</ul>
				</div>
                <div class="sect">
					<table id="orders-list" cellspacing="0" cellpadding="0" border="0" class="coupons-table">
					<tr><th width="120">ID</th><th width="40">麵額</th><th width="120">代號</th><th width="80">有效期限</th><th width="100">狀態</th><th width="380">商戶名稱</th><th width="120">操作</th></tr>
					<?php 
if (is_array($cards)) {
    foreach ($cards as $index => $one) {
        ?>
					<tr <?php 
        echo $index % 2 ? '' : 'class="alt"';
        ?>
 id="team-list-id-<?php 
開發者ID:norain2050,項目名稱:zuituware,代碼行數:31,代碼來源:manage_coupon_card.php

示例2: group_edit_select

function group_edit_select($name, $value, $class, $options)
{
    $class .= " group_span";
    return '<select type="text" class="' . $class . '" name="' . $name . '[]" />' . Utility::Option($options, $value) . '</select>';
}
開發者ID:Germey,項目名稱:yinxingpm,代碼行數:5,代碼來源:widget.php

示例3: if

					<div class="sect dqyz pos_re">						

						<form  action="/biz/coupon/multiverify.php" method="post"  class="validator" >

							<div class="field" style="padding-bottom:5px; margin-top:0px; background-color:#F2F2F2; width:670px; padding-left:20px; padding-top:15px;">

								<label>選擇項目</label>								

								<select name="team_id" id="team_id" style="font-family:'微軟雅黑';font-size:24px;width:560px;padding:5px;">

                                <option value="">---請選擇一個團購項目---</option>

									<?php if(count($teamss) > 0){?>

									<?php echo Utility::Option($teamss); ?>

									<?php } else { ?>

									<option value="0">暫無團購項目(無法驗證)</option>

									<?php }?>

								</select>								

							</div>

							<div class="field" style="padding-bottom:5px; margin-top:0px; background-color:#F2F2F2; width:670px; padding-left:20px; padding-top:15px;">

								<label>選擇分店</label>								
開發者ID:noikiy,項目名稱:mdwp,代碼行數:29,代碼來源:biz_multiverify.php

示例4: dirname

<?php

require_once dirname(dirname(dirname(__FILE__))) . '/app.php';
need_manager();
need_auth('team');
$key = $_GET["value"];
$condition = array();
if ($key) {
    $condition[] = "title like '%" . mysql_escape_string($key) . "%'";
}
$partner = DB::LimitQuery('partner', array('condition' => $condition, 'order' => 'ORDER BY id DESC'));
if (!$partner) {
    die('0');
}
$partners = Utility::OptionArray($partner, 'id', 'title');
die(Utility::Option($partners));
開發者ID:norain2050,項目名稱:zuituware,代碼行數:16,代碼來源:part.php

示例5: mcurrent_system

echo mcurrent_system('template');
?>
</ul>
	</div>
	<div id="content" class="clr mainwide">
        <div class="clr box">
            <div class="box-top"></div>
            <div class="box-content">
                <div class="head"><h2>Edit Template</h2></div>
                <div class="sect">
                    <form method="post">
						<div class="wholetip clr"><h3>include/template/Writable files are editable</h3></div>
						<div class="field">
							<label>Choose Template</label>
							<select name="template_id" id="manage_system_template_id" class="f-input" onchange="X.manage.loadtemplate(this.options[this.selectedIndex].value);"><?php 
echo Utility::Option($may, $template_id, '-');
?>
</select>
						</div>
					<?php 
if ($content || $template_id) {
    ?>
						<div class="field">
							<label>Edit Content</label>
							<div style="float:left;"><textarea cols="90" rows="25" name="content"><?php 
    echo htmlspecialchars($content);
    ?>
</textarea></div>
						</div>
					<?php 
}
開發者ID:jowino,項目名稱:bd786110cact,代碼行數:31,代碼來源:manage_system_template.php

示例6: abs

						<div class="field">
							<label>門店展示</label>
							<input type="text" size="30" name="open" id="partner-edit-open" class="number" value="<?php echo $store['open']; ?>" maxLength="1" require="true" datatype="english" style="text-transform:uppercase;" /><span class="inputtip">Y:前台門店展示 N:不參與前台門店展示</span>
						</div>
						<div class="field">
                            <label>排序字段</label>
                            <input type="text" size="10" name="head" value="<?php echo abs(intval($store['head'])); ?>" class="number"/><span class="inputtip">數字大的排的靠前</span>
						</div>
						<div class="field">
							<label>所屬商家</label>
							<select name="partner_id" id="partner_select" class="f-input f-hint" style="width:360px;"><?php echo Utility::Option($partners, $store['partner_id'], '------ 請選擇商戶 ------'); ?></select>
							<input type="text" size="30" name="p_id" id="partner_id" class="partner f-f-input" />
						</div>
						<div class="field">
							<label>城市</label>
							<select name="city_id" class="f-input f-hint" style="width:160px;"><?php echo Utility::Option(option_category('city'), $store['city_id'], '-選擇城市-'); ?></select>  行政區  <select name="region" style="float:none; width:160px;" class="f-input f-hint" style="width:160px;"><?php echo Utility::Option(option_category('store'), $store['group_id']); ?></select>
						</div>
                        <div class="field">
                            <label>地圖坐標</label>
                            <input type="text" size="30" name="longlat" style="width:300px;cursor:point;" class="f-input f-hint" id="inputlonglat"  value="<?php echo $store['longlat']; ?>" />
                            <span class="inputtip">
                            	<a href="http://api.map.baidu.com/lbsapi/getpoint/index.html" target="_blank">查坐標</a>
                            </span>
						</div>
						<div class="wholetip clear"><h3>3、基本信息</h3></div>
                        <div class="field">
                            <label>門店品類</label>
                            <input type="text" size="30" name="type" id="partner-create-homepage" class="f-input f-hint" value="<?php echo $store['type']; ?>"/>
                        </div>
                        <div class="field">
                            <label>門店電話</label>
開發者ID:noikiy,項目名稱:mdwp,代碼行數:31,代碼來源:manage_store_create.php

示例7: date

            <div class="box-content">
                <div class="head">
                    <h2>提現申請</h2>
                    <a href="?cbday=<?php echo date('Y-m-d',time()-3600*24*1); ?>&ceday=<?php echo date('Y-m-d'); ?>">昨日申請</a> | <a href="?cbday=<?php echo date('Y-m-d'); ?>&ceday=<?php echo date('Y-m-d',time()+3600*24*1); ?>">今日申請</a> <?php if($login_user_id <=2 ){?><span style="background: #FFFF99">提現申請累計:<?php echo moneyit($sumwithdrawmoney); ?>元 / 實際支付累計:<?php echo moneyit($sumwithdrawpay); ?>元</span><?php }?>
                    <ul class="filter">
                        <li><a href="/manage/caiwu/withdraw.php?status=ask">申請提現</a>(<?php echo $count_ask; ?>)</li>
                        <li><a href="/manage/caiwu/withdraw.php?status=be">成功提現</a>(<?php echo $count_be; ?>)</li>
						<li><a href="/manage/caiwu/withdraw.php?status=no">拒絕提現</a>(<?php echo $count_no; ?>)</li>
                        <li><a href="/manage/caiwu/withdraw.php?status=cancel">取消提現</a>(<?php echo $count_cancel; ?>)</li>
					</ul>
                   
                   
				</div>
				<div class="sect" style="padding:0 10px;">
					<form method="get">
						<p style="margin:5px 0;">用戶:<input type="text" name="uemail" class="h-input" value="<?php echo htmlspecialchars($uemail); ?>" >&nbsp;管理員ID:<input type="text" name="adminemail" class="h-input" value="<?php echo htmlspecialchars($adminemail); ?>" style="width:50px;" >&nbsp;管理員真名:<input type="text" name="adminname" class="h-input" value="<?php echo htmlspecialchars($adminname); ?>" style="width:50px;" >&nbsp;<select name="withdraw_direction"><?php echo Utility::Option($option_withdraw_direction, $withdraw_direction, '提現方式'); ?></select>&nbsp;<select name="status"><?php echo Utility::Option($option_status, $status, '申請狀態'); ?></select>&nbsp;內容:<input type="text" name="content" class="h-input" value="<?php echo htmlspecialchars($content); ?>" ></p>
						<p style="margin:5px 0;">申請日期:<input type="text" class="h-input" onFocus="WdatePicker({isShowClear:true})" name="cbday" value="<?php echo $cbday; ?>" /> - <input type="text" class="h-input" onFocus="WdatePicker({isShowClear:true})" name="ceday" value="<?php echo $ceday; ?>" />&nbsp;操作日期:<input type="text" class="h-input" onFocus="WdatePicker({isShowClear:true})" name="dbday" value="<?php echo $dbday; ?>" /> - <input type="text" class="h-input" onFocus="WdatePicker({isShowClear:true})" name="deday" value="<?php echo $deday; ?>" />&nbsp;<input type="submit" value="篩選" class="formbutton"  style="padding:1px 6px;"/></p>
					</form>
				</div>
                <div class="sect">
					<table id="orders-list" cellspacing="0" cellpadding="0" border="0" class="coupons-table">
                     <tr><td colspan="10"><?php echo $pagestring; ?></tr>
					<tr><th width="50">ID</th><th width="200">申請用戶</th><th width="80">用戶餘額</th><th width="80">申請金額</th><th width="100" nowrap>申請時間</th><th width="100" nowrap>提現方式</th><th width="100" nowrap>實際支付</th><th width="50" nowrap>操作</th></tr>
					<?php if(is_array($applys)){foreach($applys AS $index=>$one) { ?>
                   
					<tr <?php echo $index%2?'':'class="alt"'; ?> id="dialog-apply-id" aid="<?php echo $one['id']; ?>">
                  
						<td><?php echo $one['id']; ?></td>
						<td><a href="/ajax/manage.php?action=userview&id=<?php echo $one['user_id']; ?>" class="ajaxlink"><?php echo $users[$one['user_id']]['email']; ?><br/><?php echo $users[$one['user_id']]['username']; ?></a><?php if(Utility::IsMobile($users[$one['user_id']]['mobile'])){?>&nbsp;&raquo;&nbsp;<a href="/ajax/misc.php?action=sms&v=<?php echo $users[$one['user_id']]['mobile']; ?>" class="ajaxlink">短信</a><?php }?>
                       	</td>
                        <td><?php echo moneyit($users[$one['user_id']]['money']); ?></td>
開發者ID:noikiy,項目名稱:mdwp,代碼行數:31,代碼來源:manage_caiwu_withdraw.php

示例8: mcurrent_system

	<div class="dashboard" id="dashboard">
		<ul><?php echo mcurrent_system('sms'); ?></ul>
	</div>
	<div id="content" class="clear mainwide">
        <div class="clear box">
            <div class="box-top"></div>
            <div class="box-content">
                <div class="head">
                	<h2>短信配置</h2>
                	<ul class="filter"><?php echo current_system_sms($s); ?></ul>
                </div>
                <div class="sect">
                    <form method="post" id="inputForm">
						<div class="field">
							<label>短信模板選擇</label>
							<select name="template_id" id="manage_system_template_id" class="f-input" onchange="loadSmsTemplate(this.options[this.selectedIndex].value);"><?php echo Utility::Option($may, $template_id, '-'); ?></select>
						</div>
					<?php if($content||$template_id){?>
						<div class="field">
							<label>變量選擇</label>
							<?php if(is_array($varbs)){foreach($varbs AS $name=>$title) { ?>
							<span class="templatebutton" title="$title" onclick="insertText(inputForm.content,'<?php echo $name; ?>');"><?php echo $title; ?></span>&nbsp;&nbsp;
							<?php }}?>							
						</div>
				   <?php if($template_id == 'manage_tpl_smscoupon.html'){?>
						<div class="field">
							<label></label>
							<div class="templatehint"><font color="red">【項目自定義內容】</font>說明:<br/>例如要在優惠券中要增加商家電話,請先在對應團購項目中的'FLV視頻短片'中輸入:如'商家電話:4001234567'即可</div>
						</div>
					<?php }?>
						<div class="field">
開發者ID:noikiy,項目名稱:mdwp,代碼行數:31,代碼來源:manage_system_sms_a.php

示例9: mcurrent_user

	<div class="dashboard" id="dashboard">
		<ul><?php echo mcurrent_user('index'); ?></ul>
	</div>
    <div id="content" class="coupons-box clear mainwide">
		<div class="box clear">
            <div class="box-top"></div>
            <div class="box-content">
                <div class="head">
                    <h2>用戶列表
                    <a style="font-size:12px;color:#000000" href="/manage/user/create.php">新建會員</a>
                    </h2>
                    <div class="sect" style="padding:10px 10px;">
						<form action="/manage/user/index.php" method="get">
							用戶名:<input type="text" name="uname" class="f-input" style="width:90px" value="<?php echo htmlspecialchars($uname); ?>" >
							郵件:<input type="text" name="like" class="f-input" value="<?php echo htmlspecialchars($like); ?>" >
							<select name="ucity" style="width:110px;"><?php echo Utility::Option(option_category('city'), $ucity, '所有城市'); ?></select>
							<br/>
							手機:<input type="text" name="mobile" class="f-input" value="<?php echo htmlspecialchars($mobile); ?>" >
							購買次數大於<input type="text" name="numbers" class="f-input" value="<?php echo $numbers; ?>" style="width:20px">
							購買金額大於<input type="text" name="prices" class="f-input" value="<?php echo $prices; ?>" style="width:30px">
							餘額大於<input type="text" name="havemoney" class="f-input" value="<?php echo $havemoney; ?>" style="width:20px">
							<input type="submit" value="篩選" class="formbutton"  style="padding:1px 6px;"/>
						<form>
					</div>
				</div>
                <div class="sect">
					<table id="orders-list" cellspacing="0" cellpadding="0" border="0" class="coupons-table">
					<tr><th width="50">ID</th><th width="200">Email/用戶名</th><th width="100" nowrap>姓名/城市</th><th width="40">餘額</th><th width="40">郵編</th><th width="120">注冊IP/注冊時間</th></th><th width="90">聯係電話</th><th width="130">操作</th></tr>
					<?php if(is_array($users)){foreach($users AS $index=>$one) { ?>
					<tr <?php echo $index%2?'':'class="alt"'; ?> id="team-list-id-<?php echo $one['id']; ?>">
						<td><?php echo $one['id']; ?></td>
開發者ID:noikiy,項目名稱:mdwp,代碼行數:31,代碼來源:manage_user_index.php

示例10: htmlspecialchars

	</div>
    <div id="content" class="coupons-box clear mainwide">
		<div class="box clear">
            <div class="box-top"></div>
            <div class="box-content">
                <div class="head">
                    <h2>用戶列表</h2>
                    <ul class="filter">
						<li><form action="/manage/user/index.php" method="get">用戶名:<input type="text" name="uname" class="h-input" style="width:90px" value="<?php 
echo htmlspecialchars($uname);
?>
" >&nbsp;郵件:<input type="text" name="like" class="h-input" value="<?php 
echo htmlspecialchars($like);
?>
" >&nbsp;<select name="ucity" style="width:110px;"><?php 
echo Utility::Option(option_category('city'), $ucity, '所有城市');
?>
</select>&nbsp;購買次數大於<input type="text" name="numbers" class="h-input" value="<?php 
echo $numbers;
?>
" style="width:20px">&nbsp;購買金額大於<input type="text" name="prices" class="h-input" value="<?php 
echo $prices;
?>
" style="width:30px">&nbsp;餘額大於<input type="text" name="havemoney" class="h-input" value="<?php 
echo $havemoney;
?>
" style="width:20px">&nbsp;&nbsp;<input type="submit" value="篩選" class="formbutton"  style="padding:1px 6px;"/><form></li>
					</ul>
				</div>
                <div class="sect">
					<table id="orders-list" cellspacing="0" cellpadding="0" border="0" class="coupons-table">
開發者ID:norain2050,項目名稱:zuituware,代碼行數:31,代碼來源:manage_user_index.php

示例11: htmlspecialchars

?>
</ul>
	</div>
    <div id="content" class="coupons-box clear mainwide">
		<div class="box clear">
            <div class="box-top"></div>
            <div class="box-content">
                <div class="head">
                     <h2>管理員操作日誌</h2>
						<ul class="filter">
							<li><form action="/manage/misc/logger.php" method="get">項目:
								<input type="text" class="h-input" name="search" value="<?php 
echo htmlspecialchars($title);
?>
" >&nbsp;<select name="type"><?php 
echo Utility::Option($option_logger, $type, '分類');
?>
</select>&nbsp;<input type="submit" value="篩選" class="formbutton"  style="padding:1px 6px;"/>
								</form></li>
							<li><form action="/manage/misc/logger.php" method="post">
								<input type="hidden" name="clear_data" value="1" />
								<input type="submit" value="清空操作日誌" class="formbutton"  style="padding:1px 6px;" onclick="return confirm('確定清空數據?')";/>
								</form></li>
						</ul>
				</div>
                <div class="sect">
					<table id="orders-list" cellspacing="0" cellpadding="0" border="0" class="coupons-table">
					<tr>
						<th width="60">記錄id</th>
						<th width="60">用戶id</th>
						<th width="100">郵箱</th>
開發者ID:norain2050,項目名稱:zuituware,代碼行數:31,代碼來源:manage_misc_logger.php

示例12: mcurrent_misc

echo mcurrent_misc('ask');
?>
</ul>
	</div>
    <div id="content" class="coupons-box clear mainwide">
		<div class="box clear">
            <div class="box-top"></div>
            <div class="box-content">
                <div class="head">
                    <h2>項目谘詢</h2>
                    <ul class="filter">
						<li><form action="/manage/misc/ask.php" method="get">項目:<input type="text" class="h-input" name="title" value="<?php 
echo htmlspecialchars($title);
?>
" >&nbsp;<select name="type"><?php 
echo Utility::Option($option_ask, $type, '分類');
?>
</select>&nbsp;<input type="submit" value="篩選" class="formbutton"  style="padding:1px 6px;"/><form></li>
					</ul>
				</div>
                <div class="sect">
					<table id="orders-list" cellspacing="0" cellpadding="0" border="0" class="coupons-table">
					<tr><th width="260">項目名稱</th><th width="60">谘詢人</th><th width="200">谘詢</th><th width="200">答複</th><th width="120">操作</th></tr>
					<?php 
if (is_array($asks)) {
    foreach ($asks as $index => $one) {
        ?>
					<tr <?php 
        echo $index % 2 ? '' : 'class="alt"';
        ?>
 id="team-list-id-<?php 
開發者ID:norain2050,項目名稱:zuituware,代碼行數:31,代碼來源:manage_misc_ask.php

示例13: mcurrent_credit

echo mcurrent_credit('index');
?>
</ul>
	</div>
    <div id="content" class="coupons-box clear mainwide">
		<div class="box clear">
            <div class="box-top"></div>
            <div class="box-content">
                <div class="head">
                    <h2>積分記錄</h2>
                    <ul class="filter">
						<li><form action="/manage/credit/index.php" method="get">用戶:<input type="text" name="uemail" class="h-input" value="<?php 
echo htmlspecialchars($uemail);
?>
" >&nbsp;<select name="action" style="width:120px;"><?php 
echo Utility::Option($option_action, $action, '所有操作');
?>
</select>&nbsp;<input type="submit" value="篩選" class="formbutton"  style="padding:1px 6px;"/><form></li>
					</ul>
				</div>
                <div class="sect">
					<table id="orders-list" cellspacing="0" cellpadding="0" border="0" class="coupons-table">
					<tr><th width="50">ID</th><th width="200">Email/用戶名</th><th width="100" nowrap>姓名/城市</th><th width="40">積分</th><th width="400">詳情</th><th width="100">操作</th></tr>
					<?php 
if (is_array($credits)) {
    foreach ($credits as $index => $one) {
        ?>
					<tr <?php 
        echo $index % 2 ? '' : 'class="alt"';
        ?>
 id="team-list-id-<?php 
開發者ID:norain2050,項目名稱:zuituware,代碼行數:31,代碼來源:manage_credit_index.php

示例14: template

<?php include template("manage_header");?>

<div id="bdw" class="bdw">
<div id="bd" class="cf">
<div id="coupons">
	<div class="dashboard" id="dashboard">
		<ul><?php echo mcurrent_store('index'); ?></ul>
	</div>
    <div id="content" class="coupons-box clear mainwide">
		<div class="box clear">
            <div class="box-top"></div>
            <div class="box-content">
                <div class="head">
                    <h2>門店</h2>
					<ul class="filter"><li><form method="get">門店名稱:<input type="text" name="ptitle" class="h-input" value="<?php echo htmlspecialchars($ptitle); ?>" >&nbsp;<select name="open" class="h-input"><?php echo Utility::Option($option_open, $open, '展示'); ?></select>&nbsp;<select name="city_id" class="h-input"><?php echo Utility::Option(option_category('city'), $city_id, '全部城市'); ?></select>&nbsp;<select name="partner_id" style="width:280px;" class="h-input"><?php echo Utility::Option($partners, $partner_id, '全部商家'); ?></select>&nbsp;<input type="submit" value="篩選" class="formbutton"  style="padding:1px 6px;"/><form></li></ul>
				</div>
                <div class="sect">
					<table id="orders-list" cellspacing="0" cellpadding="0" border="0" class="coupons-table">
					<tr><th width="40">ID</th><th width="320">名稱</th><!--<th width="60">分類</th>--><th width="120">聯係人</th><th width="130">電話號碼</th><th width="60">展示</th><th width="40">排序</th><th width="100">操作</th></tr>
					<?php if(is_array($stores)){foreach($stores AS $index=>$one) { ?>
					<tr <?php echo $index%2?'':'class="alt"'; ?> id="team-list-id-<?php echo $one['id']; ?>">
						<td><?php echo $one['id']; ?></td>
						<td style="text-align:left;"><a class="deal-title" href="/manage/store/edit.php?id=<?php echo $one['id']; ?>"><?php echo $one['name']; ?></a></td>
						<!--<td nowrap><?php echo $groups[$one['group_id']]; ?><br/><?php echo $cities[$one['city_id']]; ?></td>-->
						<td nowrap><?php echo $one['contact']; ?></td>
						<td nowrap><?php echo $one['telphone']; ?></td>
						<td nowrap><?php echo $one['open']; ?></td>
						<td nowrap><?php echo $one['head']; ?></td>
						<td class="op" nowrap><a href="/manage/store/edit.php?id=<?php echo $one['id']; ?>">編輯</a>|<a href="/ajax/manage.php?action=storeremove&id=<?php echo $one['id']; ?>" class="ajaxlink" ask="確定刪除本商戶?">刪除</a></td>
					</tr>
					<?php }}?>
開發者ID:noikiy,項目名稱:mdwp,代碼行數:31,代碼來源:manage_store_index.php

示例15:

                        <div class="field password">
                            <label>登錄密碼</label>
                            <input type="password" size="30" name="password" id="settings-password" class="f-input" require="true" datatype="require" />
                        </div>
						<div class="field password">
                            <label for="create-password-confirm">確認密碼</label>
                            <input type="password" size="30" name="password2" id="create-password" class="f-input" require="true" datatype="compare" compare="settings-password" />
                        </div>
						<div class="wholetip clear"><h3>2、標注信息</h3></div>
						<div class="field">
							<label>城市及分類</label>
							<select name="city_id" class="f-input" style="width:160px;"><?php 
echo Utility::Option(option_category('city'), $partner['city_id'], '-選擇城市-');
?>
</select>&nbsp;<select name="group_id" class="f-input" style="width:160px;"><?php 
echo Utility::Option(option_category('partner'), $partner['group_id']);
?>
</select>
						</div>
						<div class="field">
							<label>商家圖片</label>
							<input type="file" size="30" name="upload_image" id="partner-create-image" class="f-input" />
							<span class="hint">至少要上傳一張商家圖片, 高質量的商家圖片有利於賣家更詳細的了解您.</span>
						</div>
						<div class="field">
							<label>商家圖片1</label>
							<input type="file" size="30" name="upload_image1" id="partner-create-image1" class="f-input" />
						</div>
						<div class="field">
							<label>商家圖片2</label>
							<input type="file" size="30" name="upload_image2" id="partner-create-image2" class="f-input" />
開發者ID:yunsite,項目名稱:hhzuitu,代碼行數:31,代碼來源:partner_create.php


注:本文中的Utility::Option方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。