Angular is a javascript based framework to develop dynamic web application. It is mainly used for developing one page application. Misko Hevery developed AngularJS in 2009 and Google maintains this software now. The latest version of angular is Angular 8 which is released in May 2019. This tutorial is for the programmer who want to […]
Read MoreAngularJS is a popular JavaScript based MVC framework for developing any dynamic website. It is an open-source client-side framework. So, anyone can easily download and use this framework to develop any Single Page Application (SPA). If you are new for this framework and want to learn AngularJS to develop any web application, then you have […]
Read MoreSteps: 1. Create a simple form using bootstrap or without bootstrap. <!doctype html> <html ng-app> <head> <meta charset=”utf-8″> <title>Form validation using Angularjs</title> <script src=”angular.js”></script> <link href=”bootstrap.css” rel=”stylesheet” /> <link href=”bootstrap-theme.css” rel=”stylesheet” /> </head> <body> <form style=”width:60%” name=”custForm” novalidate> <h2 align=”center”>Customer Entry Form</h2><br> <div class=”well”> <div class=”form-group”> <label for=”name”>Name:</label> <input type=”text” name=”name” class=”form-control” required> </div> <div […]
Read MoreThe tutorial will help you to learn angularjs crud operation using php and mysql database. Steps: 1. Create a database named angularjs and table named users CREATE TABLE `users` ( `id` int (11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `phone` varchar(15) NOT NULL, `created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `modified` […]
Read More