Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.56 KB | None | 0 0
  1.  <?php
  2.      echo $this->Form->create('Inscricao', array('url' => array('controller' => 'inscricoes', 'action' => 'inscrever')));
  3.      echo $this->Form->input('nome',array('label' => 'Nome: ')) ;
  4.      echo $this->Form->input('email',array('label' => 'E-mail: ')) ;
  5.      echo $this->Form->input('url',array('label' => 'URL: '));
  6.      echo $this->Form->input('telefone',array('label' => 'Telefone: ')) ;
  7.      echo $this->Form->input('celular',array('label' => 'Celular: ')) ;
  8.      echo $this->Form->input('endereco',array('label' => 'Endereco: ')) ;
  9.      echo $this->Form->end('Salvar');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement