Guest User

Untitled

a guest
Feb 19th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. echo $html = generateSelect('Category', array("Action Alert", "Petition"));
  2.  
  3. function generateSelect($name = '', $options = array()) {
  4.         $html = '<select name="'.$name.'">';
  5.        
  6.         foreach ($options as $option => $value) {
  7.                 $html .= '<option value='.$option.'>'.$value.'</option>';
  8.         }
  9.        
  10.         $html .= '</select>';
  11.         return $html;
  12. }
Add Comment
Please, Sign In to add comment