Skip to content

Instantly share code, notes, and snippets.

@vinacode
Created January 9, 2015 04:14
Show Gist options
  • Save vinacode/2187a01cf440e6ef37fd to your computer and use it in GitHub Desktop.
Save vinacode/2187a01cf440e6ef37fd to your computer and use it in GitHub Desktop.
CakePHP Contact template
<?php
echo $this->Form->create($contact);
if ($this->Form->isFieldError('name')) {
echo $this->Form->error('name'); }
echo $this->Form->input('name', array('error' => false));
echo $this->Form->input('email');
echo $this->Form->input('body');
echo $this->Form->button('Submit');
echo $this->Form->end();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment