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

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