Guest User

Untitled

a guest
Jan 17th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. foreach($group as $i => $name){
  2. print'<li onclick="groups('group'.$i.'');" >'.$name.'</li>';
  3. }
  4.  
  5. $moretags = "<script>";
  6. $moretags .= 'function groups(grid){';
  7. foreach($group as $i => $name){
  8. $moretags .= '
  9. if(grid == 'group'.$i.''){
  10. document.getElementById('show').innerHTML = 'group'.$i.'';
  11. }
  12. ';
  13.  
  14. }
  15.  
  16.  
  17. $moretags .= '</script>';
  18.  
  19. $groups = array('some', 'elements', 'here');
  20.  
  21. <script>
  22. var groups = <?php echo json_encode($groups); ?>;
  23. </script>
Add Comment
Please, Sign In to add comment