Skip to content

Instantly share code, notes, and snippets.

@notomato
Created August 17, 2012 07:38
Show Gist options
  • Save notomato/3376793 to your computer and use it in GitHub Desktop.
Save notomato/3376793 to your computer and use it in GitHub Desktop.
Securing forms
// View
<?= $this->form->create(); ?>
<?=$this->security->requestToken(); ?>
<?=$this->form->field('title'); ?>
<?=$this->form->submit('Submit'); ?>
<?=$this->form->end(); ?>
// Controller
public function add() {
if ($this->request->data && !RequestToken::check($this->request)) {
// Badness!!
}
}
// Source: http://www.slideshare.net/nateabele/the-state-of-lithium
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment