I need to add some default text to a HTML select
box. The placeholder
tag which works with input
doesn't seam to work whit this one?
This works
<td><input type="text" placeholder="<?php echo $lang ['your_website']; ?>"/></td>
This doesn't work
<td><select type="text" placeholder="<?php echo $lang ['select']; ?>"/></td>
How can I fix this?