Welcome Guest, Not a member yet? Register   Sign In
Form Validation
#11

[eluser]$ilovephp[/eluser]
[quote author="invision" date="1271688433"]Way-heeeeeey!!!!

That worked perfectly.

So if I wanted it to take the real value of the email field, how can I do this?

And would I just do this for the other fields on my page, instead of using the array?


Thank you once more for your help and patience.[/quote]

What do you mean get the real value of the email field? Did you mean the $_POST in PHP? Or, are you planning to repopulate the fields after error occurred upon submission of the form?

to retrieve the data submitted by a user, we use $this->input->post('field_name');

to repopulate the field with the data supplied by the user, you may use $this->validation->field_name.

So, in applying the $this->validation->field_name, we add something to the code i just gave you

Code:
$email = array
         ('name'=> 'email',
          'id' => 'email',
          'value'=>$this->validation->email
         );

echo form_input($email);

you're welcome, by the way


Messages In This Thread
Form Validation - by El Forum - 04-19-2010, 02:31 AM
Form Validation - by El Forum - 04-19-2010, 02:41 AM
Form Validation - by El Forum - 04-19-2010, 02:53 AM
Form Validation - by El Forum - 04-19-2010, 03:08 AM
Form Validation - by El Forum - 04-19-2010, 03:10 AM
Form Validation - by El Forum - 04-19-2010, 03:22 AM
Form Validation - by El Forum - 04-19-2010, 03:22 AM
Form Validation - by El Forum - 04-19-2010, 03:34 AM
Form Validation - by El Forum - 04-19-2010, 03:43 AM
Form Validation - by El Forum - 04-19-2010, 03:47 AM
Form Validation - by El Forum - 04-19-2010, 04:05 AM
Form Validation - by El Forum - 04-19-2010, 04:31 AM
Form Validation - by El Forum - 04-19-2010, 04:47 AM
Form Validation - by El Forum - 04-19-2010, 06:31 AM
Form Validation - by El Forum - 04-19-2010, 06:37 AM
Form Validation - by El Forum - 04-19-2010, 06:43 AM
Form Validation - by El Forum - 04-19-2010, 06:50 AM
Form Validation - by El Forum - 04-19-2010, 06:54 AM
Form Validation - by El Forum - 04-19-2010, 06:54 AM
Form Validation - by El Forum - 04-19-2010, 07:17 PM
Form Validation - by El Forum - 04-19-2010, 10:01 PM
Form Validation - by El Forum - 04-20-2010, 01:10 AM
Form Validation - by El Forum - 04-21-2010, 11:05 AM
Form Validation - by El Forum - 04-21-2010, 11:43 AM



Theme © iAndrew 2016 - Forum software by © MyBB