Multiple Selection

By default, PHP Autocomplete allows selection of a single value. To select multiple values, call enable_multiple() method and pass true. <?php $data =     array(         array(’id’=>1, ‘text’=>’Japan’),         array(’id’=>2, ‘text’=>’USA’),         array(’id’=>3, ‘text’=>’Hong Kong’),         array(’id’=>4, ‘text’=>’Canada’),         … Continue reading Multiple Selection