Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. $colorProductId = array('2' => 'Black','3' => 'Blue');
  2.  
  3. <span class="select_span">Select Color: </span>
  4. <select id="color_drop_down_options" data-role="color_drop_down_options" class="color_drop_down_options" onChange="check();">
  5. <?php foreach($colorProductId as $key => $value): ?>
  6. <option value="<?php /* @escapeNotVerified */ echo $value ?>"<?php if ($value): ?> selected="selected"<?php endif ?>>
  7. <?php /* @escapeNotVerified */ echo $key ?>
  8. </option>
  9. <?php endforeach; ?>
  10. </select>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement