Angular JS Routing using UI-Router

Submitted by nurhodelta_17 on
This tutorial tackles routing in Angular JS with the use of UI-Router. Angular JS is a javascript framework maintained by Google and is capable of creating Single-Page Applications. Using ui-router in routing provides features such as nested view and multiple views which will be hard to achieve when using angular-route.

AngularJS How to Submit Form

Submitted by nurhodelta_17 on
This tutorial tackles on how to submit form in Angular JS using the directive ngSubmit. Unlike ngClick that triggers on button click, ngSubmit is triggered on user's "Enter" keypress on any form field and if the form is valid if you set validation. Angular JS is a javascript framework maintained by Google and is capable of creating Single-Page Applications.

AngularJS Form Validation

Submitted by nurhodelta_17 on
This tutorial tackles on how to create a form validation in Angular JS. Validation is checking the inputs of a form whether the user's input meet the rules set in the application. In this tutorial, I have disabled the button to submit if an input is invalid. Angular JS is a javascript framework maintained by Google and is capable of creating Single-Page Applications.

AngularJS Save Selected Options (ng-repeat) using PHP/MySQLi

Submitted by nurhodelta_17 on
This tutorial tackles on how to save select option in Angular JS wherein the select options are shown using ng-repeat directive using PHP/MySQLi into MySQL database. Angular JS is a javascript framework maintained by Google and is capable of creating Single-Page Applications.

AngularJS Save Selected Options (ng-option) using PHP/MySQLi

Submitted by nurhodelta_17 on
This tutorial tackles on how to save select option in Angular JS wherein the select options are shown using ng-option directive using PHP/MySQLi into MySQL database. Angular JS is a javascript framework maintained by Google and is capable of creating Single-Page Applications.

AngularJS Select - Dynamically add Options using PHP/MySQLi

Submitted by nurhodelta_17 on
This tutorial tackles on how to add options in input select using Angular JS. We're gonna be using ng-options but you can also use ng-repeat and we're gonna discuss the difference in using both directive. Angular JS is a javascript framework maintained by Google and is capable of creating Single-Page Applications.

AngularJS Adding Form Fields Dynamically with PHP/MySQLi

Submitted by nurhodelta_17 on
This tutorial tackles on how to dynamically add form fields using Angular JS. Angular JS is a javascript framework maintained by Google and is capable of creating Single-Page Applications. We will then dynamically add the fields that we created using PHP/MySQLi that handles our MySQL Database.