Category Archives: Web Development

AngularJS – Forms

In angularjs, form provides data-binding and validation of input controls.It provide form filling and form validation in angularjs. Input controls helps for user enter the data and a form is a collection of controls for the purpose of grouping related controls together. Following are the input controls used in AngularJS forms: input elements select elements… Read More »

AngularJS – Modules

AngularJS supports modular approach. Modules are used to separate logics say controllers, services, application etc and keep the code clean. It is define in separate js file. The controllers always belong to a module. Creating a Module The angular.module function helps to create a module in angularjs. … The “myApplicaion” parameter refers to an HTML… Read More »

AngularJS Tables

In the HTML, the tables are the one of the common elements when working with web page. Tables in HTML are designed using the HTML tag. <table> tag – This is the main tag used for displaying the table. <tr> – This tag is used for segregating the rows within the table. <td> – This… Read More »

AngularJS Filters

Filters can be added in AngularJS to format data. Filters are used to change modify the data. Following is the list of commonly used filters. Sr.No. Name Description 1 uppercase converts a text to upper case text. 2 lowercase converts a text to lower case text. 3 currency formats text in a currency format. 4… Read More »

AngularJS Expression

Angularjs expressions are used to bind the data to html.The angularjs expressions are written inside {{ expression }} . It also written inside a directive like ng-bind=”expression”. AngularJS expressions are much like JavaScript expressions. They can contain literals, operators, and variables. Eg: {{ 15 + 15 }} or {{ firstName + ” ” + lastName… Read More »

How to Solve #1045 Error in phpMyAdmin

We Successfully instal WAMP server in localhost for programing, but after installing WAMP server we tryping to access the phpMyAdmin you may encounter the error: #1045 Access Denied for user ‘root’@’localhost’ (using password: YES). This may happen if you provided a wrong password or if your root@localhost database user was not granted the necessary rights… Read More »