Skip to content

Instantly share code, notes, and snippets.

@jonasporto
Last active August 29, 2015 14:04
Show Gist options
  • Save jonasporto/b3e995f877e068f96f35 to your computer and use it in GitHub Desktop.
Save jonasporto/b3e995f877e068f96f35 to your computer and use it in GitHub Desktop.
criando diversos tipo de inputs em um foreach
$options = array();
foreach($forms[0]['Field'] as $k => $v){
echo $this->Form->input($v['name'],array('type'=>strtolower($v['type']),'placeholder'=>$v['description'],'options'=>$options));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment