dongyanfeng0563 2016-02-01 11:00
浏览 34
已采纳

如何使用codeigniter set_value用于下拉输入?

I want to used set_value for input where type=text and i have no problem with that.

I am confused to use dropdown value. i am fetch dropdown values from database and i could not understand where i use set_value .

My code:

<select class="form-control" name="sport_name" id="sport_name">
 <option value=''>--Select Sport--</option>
<?php foreach($getSport as $item):
 if($item->sport_name==$mySport) 
{?>
<option value="<?php echo $item->sport_id;  ?>" selected><?php echo $item->sport_name;  ?></option>
<?php }else{?>
<option value="<?php echo $item->sport_id;  ?>"><?php echo $item->sport_name;  ?></option>
 <? } endforeach; ?>
 </select>
  • 写回答

4条回答 默认 最新

  • doudi1979 2016-02-01 21:24
    关注

    As per the docs, you would not use set_value for a select element:

    "Permits you to set the value of an input form (text input) or textarea.".

    Rather, you would use set_select.

    If you use a <select> menu, this function permits you to display the menu item that was selected. The first parameter must contain the name of the select menu, the second parameter must contain the value of each item, and the third (optional) parameter lets you set an item as the default (use boolean TRUE/FALSE).

    set_select($field[, $value = ''[, $default = FALSE]])
    

    Parameters:

    • $field (string) – Field name

    • $value (string) – Value to check for

    • $default (string) – Whether the value is also a default one

    Returns: ‘selected’ attribute or an empty string

    Return type: string

    Example:

    <select class="form-control" name="sport_name" id="sport_name">
        <option value=''>--Select Sport--</option>
        <option value="one" <?php echo set_select('sport_name', 'one'); ?> >One</option>
        <option value="two" <?php echo set_select('sport_name', 'two'); ?> >Two</option>
        <option value="three" <?php echo set_select('sport_name', 'three'); ?> >Three</option>
    </select>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 为什么apriori的运行时间会比fp growth的运行时间短呢
  • ¥15 帮我解决一下膳食平衡的线性规划模型的数据实例
  • ¥40 万年历缺少农历,需要和阳历同时显示
  • ¥250 雷电模拟器内存穿透、寻基址和特征码的教学
  • ¥200 比特币ord程序wallet_constructor.rs文件支持一次性铸造1000个代币,并将它们分配到40个UTXO上(每个UTXO上分配25个代币),并设置找零地址
  • ¥15 关于Java的学习问题
  • ¥15 如何使用chatgpt完成文本分类任务?
  • ¥15 已知速度v关于位置s的等式,怎么转化为已知位置求速度v的等式
  • ¥15 我有个餐饮系统,用wampserver把环境配置好了,但是后端的网页却进去,是为什么,能不能帮远程一下?
  • ¥15 R运行没有名称为"species"的插槽对于此对象类"SDMmodelCV"