Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. <?php
  2. class InscricoesController extends AppController {
  3.     public $name = 'Inscricoes';
  4.     public $uses = array('Inscricao');
  5.  
  6.         public function inscrever() {
  7.             // carrega a view /views/inscricoes/escrever.ctp
  8.             if(!empty($this->data())){
  9.                 $this->Inscricao->save($this->data);
  10.             }
  11.         }
  12.  
  13. }
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement