可搜索的选项列表(jQuery插件),在php中获取选定的值

时间:2017-04-07 05:45:08

标签: php jquery-plugins

我正在使用 我网站上的https://pbauerochse.github.io/searchable-option-list/examples.html插件,可搜索下拉列表。它的工作完美,但我不知道如何在PHP中获取所选项的价值? 我尝试使用下面的代码,但它只返回下拉列表中的最后一个选定值:

//echo count($_POST['courses']); 
// it return only 1 but I select more than 5 items

if (!empty($_POST['courses'])) {
    foreach ($_POST['courses'] as $select) {
        echo $coursename .= $select. " "; 
        // only last selected value is displaying
    }
}

任何人请帮忙......

0 个答案:

没有答案