Guest User

reddit pastebin

a guest
Jul 12th, 2016
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. <?php
  2. //Sample
  3. $this->load->("your_model");
  4.  
  5. $data = array(
  6.     "clientData" => $this->your_model->GetClient(1),
  7.     "locations" => $this->your_model->GetAllLocations,
  8.     ...
  9. );
  10. $this->load->view("your/view",$data);
  11.  
  12. ?>
  13. //In your/view.php
  14. <?php foreach($clientData as $client): ?>
  15.     <?= $client->name ?>
  16. <?php endforeach;?>
  17.  
  18. //Same with the locations
  19. <?php foreach($locations as $location): ?>
  20. <div class="locationDiv">
  21.     <?= $location->langitude ?>
  22. </div>
  23. <?php endforeach;?>
Add Comment
Please, Sign In to add comment