We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

Add id to option in Form Select

Hello, How can I add a id to option In Form Select ?

edited Nov '14

use the following;

                                    <?php echo $this->tag->select("DominicKinyanjui", array(
                                    'First_name' => 'Dominic',
                                    'Middle_name' => 'Kinyanjui',
                                    'Last_name' => 'Gitau',
                                    )) ?>                                                                        

On this case DominicKinyanjui will be the id. Hope this works for you.

If you want to set default option add 'useEmpty' => true, 'emptyText' => 'Please, choose one...', 'emptyValue' => ''