Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- echo '<select>';
- foreach(categories as category){
- if (category->id() === $parentCategory){
- echo '<option value="' . category['id'] . '" selected ="selected">' . category->name() . '</option>';
- }else{
- echo '<option value="' . category['id'] . '">' . category->name() . '</option>';
- }
- }
- echo '</select>';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement