Как мне сохранить значения форм? - PullRequest
0 голосов
/ 14 ноября 2010

У меня есть контроллер, который загружает вид так:

    class A extends Controller{
        public function simpleForm(){
          //this generates the form
        }

        public function simpleFormSubmitted(){
          // Simple form is submitted here. Here I perform validation and if
          // validation fails I want to display simpleform again with all the values
          // inputted by the user as it is and if validation succeeds I want to
          // redirect to some other page. I am using simple HTML to generate the
          // form and not the formhelper of CodeIgniter because I am more comfortable
          // with HTML rather than remembering the syntax of CodeIgniter.
        }
    }

Ответы [ 2 ]

2 голосов
/ 14 ноября 2010

Вот как сохранить поля формы при работе с ошибками ...

$fields['username'] = 'Username';
$fields['password'] = 'Password';
$fields['passconf'] = 'Password Confirmation';
$fields['email'] = 'Email Address';

$this->validation->set_fields($fields);

Это как заново заполнить форму HTML ...

<?php echo $this->validation->error_string; ?>

<?php echo form_open('form'); ?>

<h5>Username</h5>
<input type="text" name="username" value="<?php echo $this->validation->username;?>" size="50" />

Дляболее подробную информацию смотрите здесь - Проверка формы в Codeigniter Найдите заголовок Re-populating the form

0 голосов
/ 14 ноября 2010

в функции simpleForm добавьте переменные по умолчанию, чтобы после проверки вы могли снова вызвать ее со значениями пользовательской формы

class A{
        public function simpleForm($val1="", val2="", $val3=""){
          //this generates the form
        }

        public function simpleFormSubmitted(){
          //simple form is submitted here. Here is perform validation and if validation   fails i 
      if(!$valid){

          $result = $this->simpleForm($val1, $val2, $val3 etc...)
       }
      else{
      $result = //whatever you need to output after validation success
      }
      return $result 
      }
    }
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...