Skip to content

Instantly share code, notes, and snippets.

@csdy
Created March 1, 2013 12:43
Show Gist options
  • Save csdy/5064391 to your computer and use it in GitHub Desktop.
Save csdy/5064391 to your computer and use it in GitHub Desktop.
Disable HTML5 browser validation in CakePHP
<?php
echo $this->Form->create(
'Model',
array(
'inputDefaults' => array(
'required' => false,
),
),
);
?>
@csdy
Copy link
Author

csdy commented Apr 28, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment