Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- //Sample
- $this->load->("your_model");
- $data = array(
- "clientData" => $this->your_model->GetClient(1),
- "locations" => $this->your_model->GetAllLocations,
- ...
- );
- $this->load->view("your/view",$data);
- ?>
- //In your/view.php
- <?php foreach($clientData as $client): ?>
- <?= $client->name ?>
- <?php endforeach;?>
- //Same with the locations
- <?php foreach($locations as $location): ?>
- <div class="locationDiv">
- <?= $location->langitude ?>
- </div>
- <?php endforeach;?>
Add Comment
Please, Sign In to add comment