Crear formulario sencillo - Yii



   AUTOR PREGUNTA

Publicado 11 mayo 2014 - 17:36

¿Cómo puedo crear un formulario sencillo con yii framework?


¿Tienes la misma pregunta? Yo también

 

Publicado 11 mayo 2014 - 23:26

Supongamos que tu formulario contendrá 3 campos, uno para la dirección, ciudad y calle. Entonces quedaría así:

Direccion: <input type='text' name='LoginForm[dir]'>
Ciudad: <input type='text' name='LoginForm[ciud]'>
calle: <input type='text' name='LoginForm[st]'>

   AUTOR PREGUNTA

Publicado 12 mayo 2014 - 04:54

Gracias Jhony