AngularJS Events

1) ng-click <!DOCTYPE html> <html> <head> <meta chrset=”UTF 8″> <title>Event</title> </head> <body ng-app=””> <script src=””></script> <script src=””></script> <h1> Script guru Global Event</h1> <button ng-click=”count = count + 1″ ng-init=”count=0″> Increment </button> <div>The Current Count is {{count}}</div> </body> </html> We are…

Read MoreAngularJS Events

Angular js : Directives

1) ng-app <!DOCTYPE html> <html> <head> <meta chrset=”UTF 8″> <title>Event Directives</title> </head> <body> <script src=””></script> <script src=””></script> <script src=””></script> <script src=””></script> <h1> Script guru Global Event</h1> <div ng-app=””> Tutorial Name : {{ “Angular” + “JS”}} </div> </body> </html> The “ng-app”…

Read MoreAngular js : Directives

AngularJS Arrays

Let’s look at an example of Angular JS expressions with arrays. In this example, we are going to define an array which is going to hold the marks of a student in 4 subjects. In the view, we will display…

Read MoreAngularJS Arrays

Mysql Select Query

In MySql Select query make a big role in data manipulation. select is a DML function. The SELECT statement is used to select data from one or more tables. The SQL SELECT command is used to fetch data from the…

Read MoreMysql Select Query