I am working on a website that involves automatically populating a select box using a PHP script. This all works fine except the problem is that what I am using to populate
On the server-side:
Alternative solution: the select element is in your case (only guessing) a single-choice form control and you could use a group of radio buttons instead. These you could then style with better control. If you have a select[@multiple] you could do the same with a group of checkboxes instead as they can both be seen as a multiple-choice form control.