Skip to content

Instantly share code, notes, and snippets.

@djonatanb
Created June 4, 2013 20:55
Show Gist options
  • Save djonatanb/5709519 to your computer and use it in GitHub Desktop.
Save djonatanb/5709519 to your computer and use it in GitHub Desktop.
//get rid of this
$countries = $this->Network->Country->find('list');
//and use this
$countries = $this->Network->find('list', array('contain' => 'Country');
//both using this in the view
echo $this->Form->input('Country');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment