Posts

Showing posts from January, 2018

Node js Tutorial #2 Installation of Node js & IDE : WebStorm

Image
Node js Tutorial #2 Installation of Node js & IDE : WebStorm  Download Node js : https://nodejs.org/en/ Download WebStorm IDE : https://www.jetbrains.com/webstorm/ Node.js is a powerful tool for controlling servers, building web applications, and creating event-driven programs. And it takes JavaScript—a language familiar to all web developers—out of the browser. With Node.js, you can build applications that run on your laptop or even the cloud. Node.js is an open-source, cross-platform JavaScript run-time environment for executing JavaScript code server-side. Historically, JavaScript was used primarily for client-side scripting, in which scripts written in JavaScript are embedded in a webpage's HTML, to be run client-side by a JavaScript engine in the user's web browser. Node.js enables JavaScript to be used for server-side scripting, and runs scripts server-side to produce dynamic web page content before the page is sent to the user's web browser. Node.js is a ...

Node js Tutorial #1 Introduction

Image
Node.js is a powerful tool for controlling servers, building web applications, and creating event-driven programs. And it takes JavaScript—a language familiar to all web developers—out of the browser. With Node.js, you can build applications that run on your laptop or even the cloud. Node.js is an open-source, cross-platform JavaScript run-time environment for executing JavaScript code server-side. Historically, JavaScript was used primarily for client-side scripting, in which scripts written in JavaScript are embedded in a webpage's HTML, to be run client-side by a JavaScript engine in the user's web browser. Node.js enables JavaScript to be used for server-side scripting, and runs scripts server-side to produce dynamic web page content before the page is sent to the user's web browser. Node.js is a cross-platform runtime environment and library for running JavaScript applications outside the browser. It is used for creating server-side and networking web applicati...

CodeIgniter Mini Project Tutorial in Hindi ( Creating Login Model )

Image
This video series covers creating mini project using codeigniter framework & this video covers creating Login Model used for authentication in Hindi 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 Beginner...

MongoDB Tutorial #2 Installation of Mongodb

Image
Welcome to the free beginner class on MongoDB. These MongoDB video tutorials teach you EVERYTHING you need to know about MongoDB.. Learn New Technologies --  Visit Our Channel 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...

Angular 2 Tutorial #1 Introduction

Image
Programming in Hindi (हिन्दी) Angular 2 Tutorial introduces you to the essentials of this "superheroic" framework, including powerful features such as rich templates, change detection, user interactions, two-way data binding, comprehensive routing, and dependency injection.... Watch Website : https://angular.io/ Topics include: What is Angular? Setting up an Angular template Creating a component Binding events and properties Getting data to components Using directives and pipes Creating Angular forms Validating form data Understanding dependency injection Providing services 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 B...

Codeigniter Mini Project Tutorial in Hindi (Getting User Input Data) | Input Class

Image
This video series covers creating mini project using codeigniter framework & this video covers receiving data submitted by user into the controller in Hindi/Urdu. 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 Tu...

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

Image
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 cla...

Codeigniter Mini Project Tutorial in Hindi/Urdu (Create Login Form) | form_open() | form_input()

Image
Codeigniter Mini Project Tutorial in Hindi/Urdu (Create Login Form) | form_open()  | form_input() This video series covers creating mini project using codeigniter framework & this video covers creating login form for Admin/index using Form Helpers in Hindi/Urdu. 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) : ht...

How to Create a multiple choice quiz in CodeIgniter | Mini Project Demonstration

Image
In this video I will be showing you how to create a multiple choice quiz in CodeIgniter and mySQL with the data of the quiz being extracted from a database. Learn New Technologies --  Visit Our Channel 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 Me...

MongoDB Tutorial #1 Introduction | RDBMS VS MongoDB

Image
Welcome to the free beginner class on MongoDB. These MongoDB video tutorials teach you EVERYTHING you need to know about MongoDB MongoDB is available under General Public license  for free and it is also available under Commercial  license from the manufacture.  Database Database is a physical container for collections. Each database gets its own set of files on the file system. A single MongoDB server typically has multiple databases. Collection Collection is a group of MongoDB documents. It is the equivalent of an RDBMS table. A collection exists within a single database. Documents within a collection can have different fields. A document is a set of key-value pairs. Documents have dynamic schema. Dynamic schema means that documents in the same collection do not need to have the same set of fields or structure, and common fields in a collection's documents may hold different types of data. Learn New Technologies --  Visit Our Channel 1) CodeIgniter Mini...

Codeigniter Mini Project Tutorial in Hindi/Urdu ( Adding CSS/JS files) | Link_tag() | Base_url()

Image
Codeigniter Mini Project Tutorial in Hindi/Urdu ( Adding CSS/JS files) | Link_tag()  | Base_url() This video series covers creating mini project using codeigniter framework & this video covers adding CSS/JS files into the views in Hindi/Urdu. Basic Codeigniter Tutorial for Beginners Step by Step in Hindi https://www.youtube.com/watch?v=GcRv-3-pXeI&list=PL_HlKez9XCSM6WNO_dHhF3yPKVdY1ZZzB If you have any doubt regarding this stuff than you can leave your comment in comment box. You can also connect with us the following links are mention below:- Twitter id : 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!

Codeigniter mini Project Tutorial in Hindi/Urdu ( Removing Index.php )

Image
Codeigniter mini Project Tutorial in Hindi/Urdu ( Removing Index.php ) This video series covers creating mini project using codeigniter framework & this video covers .htaccess to remove index.php in Hindi/Urdu. General Synax of .htaccess File:- RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L] Project Structure:-Basic Codeigniter Tutorial for Beginners Step by Step in Hindi https://www.youtube.com/watch?v=GcRv-3-pXeI&list=PL_HlKez9XCSM6WNO_dHhF3yPKVdY1ZZzB If you have any doubt regarding this stuff than you can leave your comment in comment box. You can also connect with us the following links are mention below:- Twitter id : 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 t...

Codeigniter Mini Project Tutorial in Hindi/Urdu (Basic Controller) & Core Classes concept??

Image
Codeigniter Mini Project Tutorial in Hindi/Urdu (Basic Controller) & Core Classes concept?? This is video series on Step by Step CodeIgniter Project Tutorial. And this video covers (Basic Controller) & Core Classes concept?? Project Structure:- Blog Name : TP2k16    User Interface               -- Article List               --  Article View    Admin Interface :               --Login/Sign up with logout               -- Add Article                --Edit Article                          --Delete Article...

Codeigniter Mini Project Tutorial in Hindi/Urdu (Basic Controller) & Core Classes concept??

Image
Codeigniter Mini Project Tutorial in Hindi/Urdu (Basic Controller) & Core Classes concept?? This is video series on Step by Step CodeIgniter Project Tutorial. And this video covers (Basic Controller) & Core Classes concept?? Project Structure:- Blog Name : TP2k16    User Interface               -- Article List               --  Article View    Admin Interface :               --Login/Sign up with logout               -- Add Article                --Edit Article                          --Delete Article...

Codeigniter Mini Project Tutorial in Hindi/Urdu (Create Database) & Tables?

Image
Codeigniter Mini Project Tutorial in Hindi/Urdu (Create Database) & Tables? This is video series on Step by Step CodeIgniter Project Tutorial. And this video covers (Create Database) & Tables?? Project Structure:- Blog Name : TP2k16    User Interface               -- Article List               --  Article View    Admin Interface :               --Login/Sign up with logout               -- Add Article                --Edit Article                          --Delete Article      ...

Codeigniter Project Tutorial in Hindi/Urdu (Installation) | Project Introduction?? | Technologies??

Image
This is video series on Step by Step CodeIgniter Project Tutorial. And this video covers Project Introduction?? Project Structure:- Blog Name : TP2k16    User Interface               -- View Article               -- View Article Mutiple Forms    Admin Interface :               --Login/Sign up with logout               -- Add Article                --Edit Article                          --Delete Article              Technologies :- --PHP Framework  (codeigniter) ...

AngularJS Tutorial -16 | What is Routing in Angular JS | How Single Page Application Works?

Image
AngularJS Tutorial -16 | What is Routing in Angular JS | How Single Page Application Works? AngularJS Routing The ngRoute module helps your application to  become a Single Page Application. What is Routing in AngularJS? If you want to navigate to different pages in your application, but you also want the application to be a SPA (Single Page Application),  with no page reloading, you can use the ngRoute module. The ngRoute module routes your application to  different pages without reloading the entire application. Visit Our Channel : (Playlists) https://www.youtube.com/channel/UCHIbErciyS3Hs0kjAz-at5Q/playlists 1) Learn Bootstrap : https://www.youtube.com/watch?v=cJCLwnhefWI&list=PL_HlKez9XCSMlD8O-JU3KhxgGd4AwLLZs 2) PHP Tutorial for Beginners (For Absolute Beginners)  : https://www.youtube.com/watch?v=eOoikS8JIDo&list=PL_HlKez9XCSOhiI5sKVYTE36Dv_rOFa6g 3) AngularJS Tutorial for Beginners  : https://www.youtube.com/watch?v=sXUXF2hyJsg&list=PL...

Codeigniter 3 Tutorial in Hindi | Core Classes | Part-18

Image
Codeigniter 3 Tutorial in Hindi | Core Classes | Part-18 This is video series on Step by Step Tutorial on Codeigniter Framework in Hindi. And this video covers Core Classes.. Visit Our Channel : (Playlists) https://www.youtube.com/channel/UCHIbErciyS3Hs0kjAz-at5Q/playlists 1) Learn Bootstrap : https://www.youtube.com/watch?v=cJCLwnhefWI&list=PL_HlKez9XCSMlD8O-JU3KhxgGd4AwLLZs 2) PHP Tutorial for Beginners (For Absolute Beginners)  : https://www.youtube.com/watch?v=eOoikS8JIDo&list=PL_HlKez9XCSOhiI5sKVYTE36Dv_rOFa6g 3) AngularJS Tutorial for Beginners  : https://www.youtube.com/watch?v=sXUXF2hyJsg&list=PL_HlKez9XCSOkdxgl-7CxJ3JalFKqLC0s 4) Java Tutorial For Beginners (Step by Step tutorial)  : https://www.youtube.com/watch?v=gl0evZRSGyc&list=PL_HlKez9XCSOXdDbsmQspUnE-VuLoKZ2I 5) Whats new in PHP 7 in Hindi : https://www.youtube.com/watch?v=iHCi6qWHOs0&list=PL_HlKez9XCSNDJdKKvZn7T7fhsu-GKHHT 6) Build a PHP MVC Application : https://www.youtube....

Codeigniter 3 Tutorial in Hindi | Extending Libraries | Part-17

Image
Codeigniter 3 Tutorial in Hindi | Extending Libraries | Part-17 This is video series on Step by Step Tutorial on Codeigniter Framework in Hindi. And this video covers Extending Libraries.. Visit Our Channel : (Playlists) https://www.youtube.com/channel/UCHIbErciyS3Hs0kjAz-at5Q/playlists 1) Learn Bootstrap : https://www.youtube.com/watch?v=cJCLwnhefWI&list=PL_HlKez9XCSMlD8O-JU3KhxgGd4AwLLZs 2) PHP Tutorial for Beginners (For Absolute Beginners)  : https://www.youtube.com/watch?v=eOoikS8JIDo&list=PL_HlKez9XCSOhiI5sKVYTE36Dv_rOFa6g 3) AngularJS Tutorial for Beginners  : https://www.youtube.com/watch?v=sXUXF2hyJsg&list=PL_HlKez9XCSOkdxgl-7CxJ3JalFKqLC0s 4) Java Tutorial For Beginners (Step by Step tutorial)  : https://www.youtube.com/watch?v=gl0evZRSGyc&list=PL_HlKez9XCSOXdDbsmQspUnE-VuLoKZ2I 5) Whats new in PHP 7 in Hindi : https://www.youtube.com/watch?v=iHCi6qWHOs0&list=PL_HlKez9XCSNDJdKKvZn7T7fhsu-GKHHT 6) Build a PHP MVC Application : https://...

Codeigniter 3 Tutorial in Hindi | get_instance() | Helper Function | Part-16

Image
This is video series on Step by Step Tutorial on Codeigniter Framework in Hindi. And this video covers get_instance() Helper Function Visit Our Channel : (Playlists) https://www.youtube.com/channel/UCHIbErciyS3Hs0kjAz-at5Q/playlists 1) Learn Bootstrap : https://www.youtube.com/watch?v=cJCLwnhefWI&list=PL_HlKez9XCSMlD8O-JU3KhxgGd4AwLLZs 2) PHP Tutorial for Beginners (For Absolute Beginners)  : https://www.youtube.com/watch?v=eOoikS8JIDo&list=PL_HlKez9XCSOhiI5sKVYTE36Dv_rOFa6g 3) AngularJS Tutorial for Beginners  : https://www.youtube.com/watch?v=sXUXF2hyJsg&list=PL_HlKez9XCSOkdxgl-7CxJ3JalFKqLC0s 4) Java Tutorial For Beginners (Step by Step tutorial)  : https://www.youtube.com/watch?v=gl0evZRSGyc&list=PL_HlKez9XCSOXdDbsmQspUnE-VuLoKZ2I 5) Whats new in PHP 7 in Hindi : https://www.youtube.com/watch?v=iHCi6qWHOs0&list=PL_HlKez9XCSNDJdKKvZn7T7fhsu-GKHHT 6) Build a PHP MVC Application : https://www.youtube.com/watch?v=R86Jbu_ipdY&list=PL_HlKez9XCS...

JSON Tutorial for Beginners | JSON Formatter & Validator & Comment | Part-5

Image
JSON Comments JSON doesn't support comments. It is not a standard. But you can do some tricks such as adding extra attribute for comment in JSON object, for example:  Visit Our Channel : (Playlists) https://www.youtube.com/channel/UCHIbErciyS3Hs0kjAz-at5Q/playlists 1) Learn Bootstrap : https://www.youtube.com/watch?v=cJCLwnhefWI&list=PL_HlKez9XCSMlD8O-JU3KhxgGd4AwLLZs 2) PHP Tutorial for Beginners (For Absolute Beginners)  : https://www.youtube.com/watch?v=eOoikS8JIDo&list=PL_HlKez9XCSOhiI5sKVYTE36Dv_rOFa6g 3) AngularJS Tutorial for Beginners  : https://www.youtube.com/watch?v=sXUXF2hyJsg&list=PL_HlKez9XCSOkdxgl-7CxJ3JalFKqLC0s 4) Java Tutorial For Beginners (Step by Step tutorial)  : https://www.youtube.com/watch?v=gl0evZRSGyc&list=PL_HlKez9XCSOXdDbsmQspUnE-VuLoKZ2I 5) Whats new in PHP 7 in Hindi : https://www.youtube.com/watch?v=iHCi6qWHOs0&list=PL_HlKez9XCSNDJdKKvZn7T7fhsu-GKHHT 6) Build a PHP MVC Application : https://www.yo...

JSON Tutorial for Beginners | JSON Data Types? | Part-4

Image
JSON Data Types ---Valid Data Types In JSON, values must be one of the following data types:     a string     a number     an object (JSON object)     an array     a boolean     null JSON values cannot be one of the following data types:     a function     a date     undefined     JSON Strings Strings in JSON must be written in double quotes. Example { "name":"John" } JSON Numbers Numbers in JSON must be an integer or a floating point. Example { "age":30 } JSON Objects Values in JSON can be objects. { "employee":{ "name":"John", "age":30, "city":"New York" } } JSON Arrays Values in JSON can be arrays. Example { "employees":[ "John", "Anna", "Peter" ] } JSON Booleans Values in JSON can be true/false. Example { "sale":true }  Visit Our Channel : (Playlists) https://www.youtube.com/channel/UCHIbErciyS3Hs0kjAz-at5Q/playli...

JSON Tutorial for Beginners | JSON Syntax Rules? | Part-2

Image
JSON Tutorial for Beginners | JSON Syntax Rules? | Part-2 JSON Syntax Rules ?? What is JSON?     JSON stands for JavaScript Object Notation     JSON is lightweight data interchange format     JSON is language independent *     JSON is "self-describing" and easy to understand * The JSON syntax is derived from JavaScript object notation syntax, but the JSON format is text only. Code for reading and generating JSON data can be written in any programming language. JSON Syntax Rules     Data is in name/value pairs     Data is separated by commas     Curly braces hold objects     Square brackets hold arrays  JSON Data - A Name and a Value JSON data is written as name/value pairs. A name/value pair consists of a field name (in double quotes), follo wed by a colon, followed by a value: Example "name":"John" JSON - Evaluates to JavaScript Objects The JSON fo...