Welcome Guest, Not a member yet? Register   Sign In
form validation:
#1

[eluser]ken kloud[/eluser]
this form is from the user guide in form validation:


myform.php

<html>
<head>
<title>My Form</title>
</head>
<body>

<?=$this->validation->error_string; ?>

<?=form_open('form'); ?>

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

<h5>Password</h5>
&lt;input type="text" name="password" value="&lt;?=$this-&gt;validation->password;?&gt;" size="50" />

<h5>Password Confirm</h5>
&lt;input type="text" name="passconf" value="&lt;?=$this-&gt;validation->passconf;?&gt;" size="50" />

<h5>Email Address</h5>
&lt;input type="text" name="email" value="&lt;?=$this-&gt;validation->email;?&gt;" size="50" />

<div>&lt;input type="submit" value="Submit" /&gt;</div>

&lt;/form&gt;

&lt;/body&gt;
&lt;/html&gt;



form.php -controller

function index()
{
$this->load->helper(array('form', 'url'));

$this->load->library('validation');

$rules['username'] = "required";
$rules['password'] = "required";
$rules['passconf'] = "required";
$rules['email'] = "required";

$this->validation->set_rules($rules);

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

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

if ($this->validation->run() == FALSE)
{
$this->load->view('myform');
}
else
{
$this->load->view('formsuccess');
}
}



myformsuccess.php

&lt;html&gt;
&lt;head&gt;
&lt;title&gt;My Form&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;

<h3>Your form was successfully submitted!</h3>

<p>&lt;?=anchor('form', 'Try it again!'); ?&gt;</p>

&lt;/body&gt;
&lt;/html&gt;



+++++++++++++++++++++++++++++

This is my following errors in the browser:

browser:

validation->error_string; ?&gt;

then in every fields of the textbox the php code will see: example:&lt;?=$this->validation->username;?&gt;
this code is in the textbox...

and my problem is if i'am doing right,, because this code did not run,, but in the user guide its run very clear to understand but in testing it, its not...

sorry for this silly question...
thank you for the replys...
#2

[eluser]ianchov[/eluser]
You have to edit php.ini to enable fast tags

anyway to make it work change to &lt;?php
#3

[eluser]barbazul[/eluser]
You can also enable the "rewrite_short_tags" option in your config.php file if you don't have access to your hosting php.ini file. There might be an impact on performance when doing this but it's a quick fix.
#4

[eluser]Unknown[/eluser]
that's quitely right...
#5

[eluser]ken kloud[/eluser]
thanks!!!

thanks for the reply!!!

maraming salamat poh...

thank you very much...




Theme © iAndrew 2016 - Forum software by © MyBB