在修改

时间:2015-08-10 11:52:12

标签: php codeigniter

我正在尝试修改我的商店详情。在我的编辑页面中,我想在下拉菜单中首先显示之前选择的 category_name

我使用两个变量 $ category_list $ user_category 在我的$ category_list中,其中包含所有可用的商店(带有ID),$ user_category包含以前选择的商店(带有ID)

enter image description here

我想用 newcafe 替换商店和服务,这是$ user-category contains

 <select name="category" style="margin-left: 24px; height: 26px; width: 150px;">  
                         <?foreach($category_list->result() as $list)
                         {
                          $selected = "";   
                          foreach($user_category->result() as $list2)
                          {
                          if($list->main_type_name==$list2->main_type_name)
                          $selected = "selected";
                          ?>
                          <option value="<? echo $list->type_id;?>" selected="<?php echo $selected; ?>"<?echo set_select('category',$list->type_id);?>> <? echo $list->main_type_name;?></option>

                          <?}}?>

                        </select>

0 个答案:

没有答案