我是 PHP 的新手,事实上我这样做的原因是为了定制一个 wordpress 插件,这样它就可以满足我的需要。到目前为止,我有一个默认表单,我现在正在做的是添加一个国家下拉列表。这是我添加它的方法
<div class="control-group">
<label class="control-label" for="Country">Country :</label>
<div class="controls">
<select id="itemType_id" name="cscf[country]" class="input-xlarge">
<option value="malaysia@email.com">Malaysia</option>
<option value="indonesia@email.com">Indonesia</option>
</select>
<span class="help-inline"></span>
</div>
</div>
到目前为止,我只能用
$cscf['country'];
在这种情况下,我怎样才能获得国家名称的显示文本?