dongpian6319 2012-04-23 07:17
浏览 27
已采纳

PHP:下拉框中的选定值

I am doing an dropdown box, where I have let's say we have "option1" and "option2", the dropbox selects(marks) the "option1" and then we select the "option2", I want it to mark the "option2" in the dropdown box, but it doesn't mark it.

I'm trying to avoid to do javascript on this one, so I wonder if I can do it only on PHP.

Advices? Thanks!

Edit. Well the problem is that i dont know how many options i have before building the dropdown menu. I get an array generated from a table in a database and make the options based on that. Code:

<select name="department">
            <?php foreach(bloggModelControler::getDepartments($_SESSION['user']) as $tempDepartment){
                if(strcmp($tempDepartment, $department) == 0){
                    $selected = ".selected='selected'.";
                }else{
                    $selected = ".selected=''.";
                }
                $dropdown = "<option \"$selected\" value=\"$tempDepartment\">\"$tempDepartment\" Selected</option>";
                echo $dropdown;
}?>         
</select>

and $department:

<?php
        if(isset($_POST['department'])){
            $department = $_POST['department'];
        }else{
            $departments = bloggModelControler::getDepartments($_SESSION['user']);
            $department = $departments[0];
        }
    ?>
  • 写回答

1条回答 默认 最新

  • douyun8674 2012-04-23 07:25
    关注

    Updated answer based on updated question (included code)

    Don't put the periods inside the text variables for 'selected'.

    if(strcmp($tempDepartment, $department) == 0){
                    $selected = "selected='selected'";
                }else{
                    $selected = "selected=''";
                }
    

    Previous answer

    In your PHP code that generates the HTML for the Select box, you have to specify which option is selected.

    For example:

    <select name="selectbox">
      <option <?php if ($_POST['selectbox'] == 'option1') echo 'selected="selected"';?>>option1</option>
      <option <?php if ($_POST['selectbox'] == 'option2') echo 'selected="selected"';?>>option2</option>
    </selected>
    

    Alternate syntax:

    <select name="selectbox">
      <option <?= ($_POST['selectbox'] == 'option1')? 'selected="selected"' : '';?>>option1</option>
      <option <?= ($_POST['selectbox'] == 'option2')? 'selected="selected"' : '';?>>option2</option>
    </selected>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

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

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

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

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

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

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

客服 返回
顶部