Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save alexandreelise/44336b458b095c5b4e97abc3b0fd405c to your computer and use it in GitHub Desktop.
Save alexandreelise/44336b458b095c5b4e97abc3b0fd405c to your computer and use it in GitHub Desktop.
Code snippet for HTMLHelper select options with empty default value
<label for="demo">Demo</label>
<select id="demo" name="demo">
<?php array_unshift($this->myExampleOptionsArray, null); ?>
<?php echo HTMLHelper::_('select.options', $this->myExampleOptionsArray, 'value', 'text', $this->selectedOptionValue ?? '');?>
</select>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment