Codeigniter Mini Project Tutorial in Hindi/Urdu (Login Form Validation) | form_validation()

This video series covers creating mini project using codeigniter framework & this video covers Login Form Validation using form_validation library.













Form Validation

//Load form_validation
 $this->load->library('form_validation');

 //Check form_validation
 $this->form_validation->run()

// Setting Validation Rules
$this->form_validation->set_rules();

$this->form_validation->set_rules('username', 'Username', 'trim|required|min_length[5]|max_length[12]');
$this->form_validation->set_rules('password', 'Password', 'trim|required|min_length[8]');
$this->form_validation->set_rules('passconf', 'Password Confirmation', 'trim|required|matches[password]');
$this->form_validation->set_rules('email', 'Email', 'trim|required|valid_email');

//Changing the Error Delimiters
$this->form_validation->set_error_delimiters('<div class="error">', '</div>');

//Changing delimiters Individually
<?php echo form_error('field name', '<div class="error">', '</div>'); ?>


Learn New Technologies --  Visit Our Channel --

https://www.youtube.com/tutorialspoint2016

1) CodeIgniter Mini Project Tutorial in Hindi/Urdu
Using Angular JS & Boostrap 3 :   https://goo.gl/FSwsJ4

2) Codeigniter Tutorial for Beginners
Step by Step in Hindi : https://goo.gl/bxG6gJ

3) PDO-OOP-PHP-CRUD-with-Bootstrap : https://goo.gl/q1KRTn

4) AngularJS Tutorial for Beginners
(For Absolute Beginners )  :  https://goo.gl/Hak26N

5) JSON Tutorial for Beginner  : https://goo.gl/ryPu35

6) Git and GitHub Training In Hindi  : https://goo.gl/HpToSd

7) Java Tutorial For Beginners
(Step by Step tutorial) : https://goo.gl/QxJ68x

8) PHP Tutorial for Beginners (For Absolute Beginners) : https://goo.gl/S3urkU

9) OOPS Tutorial for Beginners in PHP : https://goo.gl/k2kJDM

10) Bootstrap Tutorial for Beginners  : https://goo.gl/NGFDse

11) Magic Methods in PHP Tutorial  : https://goo.gl/BdYLfJ

12) Build a PHP MVC Application  : https://goo.gl/yqDCkb

13) Whats new in PHP 7 | (Introduction)  : https://goo.gl/rTTKkr

14) CRUD with PHP and MySQLi Tutorial  : https://goo.gl/yyjWD7

15) Technology Tips and Tricks  : https://goo.gl/MpR952

16) MongoDB Tutorial for Beginners (Hindi)  : https://goo.gl/NZXD1u

Any questions or suggestions you may have, let me know in the comments below and I will try to reply as soon as I can.

You can connect with us in social Media :-

Youtube  : https://www.youtube.com/tutorialspoint2016

Twitter: https://twitter.com/tutorialspoint2

facebook : https://www.facebook.com/tutorialspoint2016

Instragram : https://www.instagram.com/tutorialspoint2016

Google plus : https://plus.google.com/+TutorialsPoint2016

Blogger : http://tutorialspoint2016.blogspot.in/

Don't forget to hit the Subscribe & Like button!

Comments

Popular posts from this blog

What is Software Testingđź’ˇFunctional Testing vs Non functional Testingđź’ˇManual vs Automation Testing

CodeIgniter Mini Project Tutorial in Hindi ( Pagination ) đź’ˇ Very Simple Example

Core PHP đź’ˇ Mini Project đź’ˇ Project Overview with source code đź’ˇ PHP Live Project Training đź’ˇ