Skip to content

Instantly share code, notes, and snippets.

@ryanneufeld
Created November 18, 2012 19:13
Show Gist options
  • Save ryanneufeld/4106945 to your computer and use it in GitHub Desktop.
Save ryanneufeld/4106945 to your computer and use it in GitHub Desktop.
// get the list of laptops
$laptops = $this->laptop_model->get_laptops();
// get laptop details
$laptopDetails = array();
foreach($laptops as $laptop) {
$laptopDetails[$laptop->id] = $this->laptop_model->get_laptop_details($laptop->id);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment