douji5523 2012-02-25 06:09
浏览 26
已采纳

列数据作为php中的下拉框

How can i retrieve a column values from my database table and show it as a drop down box in php with codeigniter.

  • 写回答

1条回答 默认 最新

  • dongpang1232 2012-02-26 12:09
    关注

    Simply write a function in one of your models (application/models) that fetches all the data you want. Something like:

    public function getTags()
    {
     $this->db->select('id,tag_name');
     $this->db->order_by('tag_name', 'ASC');
     $query = $this->db->get('tags');
     return $query->result();
    }
    

    Then you have to load that model file in the controller, and finally in your view file try something like this:

    <?php foreach($this->model_name->getTags() as $tagData): ?>
    <li>
    <h2><a href="/tags/<?php echo $tagData->id; ?>"><?php echo $tagData->tag_name; ?></a></h2>
    </li>
    <?php endforech; ?>
    

    where model_name is your model. You only need to style your html as a dropdown. You can get more information in here

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部