Guest User

Untitled

a guest
Jan 22nd, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. function getotherResource(){
  2. $result = json_decode($this->curl->simple_get($this->API.'/otherResource'));
  3. $html = "***<div class='wrapper'>***";
  4. foreach($result as $r){
  5. $html.="<div class='m-b-xs m-t'>
  6. <label class='i-checks i-checks-md'>
  7. <input type='checkbox' name='chkotherResource' id='v-".$r->qEmployee."' value='".$r->employeeName."'>
  8. <i></i>
  9. ".$r->employeeName."
  10. </label>
  11. </div>";
  12. }
  13. ***$html.="</div>"***
  14. echo $html;
  15. }
  16.  
  17. .wrapper {
  18. display: grid;
  19. grid-gap: 10px;
  20. grid-template-columns: repeat(2, 50%);
  21. }
Add Comment
Please, Sign In to add comment