Search
 
SCRIPT & CODE EXAMPLE
 

PHP

confirm password in codeigniter

$this->form_validation->set_rules('first_name','First Name','trim|required');
$this->form_validation->set_rules('last_name','Last Name','trim|required');
$this->form_validation->set_rules('email','Email','trim|required|valid_email');
$this->form_validation->set_rules('username','Username','trim|required|min_length[3]');
$this->form_validation->set_rules('password', 'Password', 'required');
$this->form_validation->set_rules('confirm_password', 'Confirm Password', 'required|matches[password]');
Comment

PREVIOUS NEXT
Code Example
Php :: php pass a variabele to js 
Php :: php sql last 10 rows 
Php :: laravel emial unique igration error 
Php :: I cannot login to my CPanel hosted Laravel Application, my SSL has expired 
Php :: migration bool type eloquent orm 
Php :: how to add extra days from a date php 
Php :: laravel blade short if 
Php :: remove special character in php 
Php :: wpml display language switcher 
Php :: laravel gigapay create payout 
Php :: php hide decimals if zero 
Php :: verificare esistenza file in php 
Php :: symfony convert entity to array 
Php :: add seconds to datetime carbon 
Php :: laravel faker examples 
Php :: Laravel loop iternation pagination issue 
Php :: php load specific post id on language 
Php :: get all errors view laravel 
Php :: pegar parte da string php 
Php :: how to take input in php 
Php :: yii2 get action class in view 
Php :: laravel public access inserver using htaccess 
Php :: php pass variable by reference 
Php :: strlen php 
Php :: how to get value of textarea in php 
Php :: appending txt file from php 
Php :: laravel include files 
Php :: laravel display old value in form 
Php :: php check if associative array is null 
Php :: composer clear cache 
ADD CONTENT
Topic
Content
Source link
Name
5+8 =