Skip to content

Instantly share code, notes, and snippets.

@Marian0
Created December 10, 2014 21:02
Show Gist options
  • Save Marian0/39a3f7467808f0b0a829 to your computer and use it in GitHub Desktop.
Save Marian0/39a3f7467808f0b0a829 to your computer and use it in GitHub Desktop.
CakePHP - Load model, find data, send to view
$this->loadmodel('Area');
$data = $this->Area->find('list'); // OR ALL TO GET ALL ATTRIBUTES
$this->set('areas', $data );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment