Skip to content

Instantly share code, notes, and snippets.

@cakephp-tutorial
Created February 27, 2016 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cakephp-tutorial/88fce77b65626192ba60 to your computer and use it in GitHub Desktop.
Save cakephp-tutorial/88fce77b65626192ba60 to your computer and use it in GitHub Desktop.
<!-- /app/View/Orders/add.ctp -->
<?php
echo $this->Form->create('Order');
echo $this->Form->input('company');
echo $this->Form->input('email');
echo $this->Form->input('Order.Region', array('multiple' => 'checkbox'));
echo $this->Form->end('crea');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment