Skip to content

Instantly share code, notes, and snippets.

@johnmorris
Last active May 22, 2019 11:52
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save johnmorris/5477376 to your computer and use it in GitHub Desktop.
Save johnmorris/5477376 to your computer and use it in GitHub Desktop.
Dynamic select box - the HTML. Video tutorial at: http://youtu.be/rSncrXP0HeU
<select name="the_name">
<?php foreach ( $results as $option ) : ?>
<option value="<?php echo $option->desired_value; ?>"><?php echo $option->desired_label; ?></option>
<?php endforeach; ?>
</select>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment