Skip to main content

Posts

hello world in angular js

Angular 2 is the next version of Google’s massively popular MV* framework for building complex applications in the browser (and beyond). Code link : https://drive.google.com/open?id=0BxmTZPVcu72fWjJnNF9zWnRRLWM Demo link : http://freeteachnology.hol.es/quickstart/ Angular 2 comes with almost everything you need to build a complicated frontend web or mobile apps, from powerful templates to fast rendering, data management, HTTP services, form handling. Angular 2 is the next version of Google’s massively popular MV* framework for building complex applications in the browser (and beyond). When Angular 2 was announced in October 2014 at the ngEurope conference, the ngCommunity was up in arms: what did this mean for their favorite framework they invested so much time into learning and building real things with? A lot of Angular developers were worried that Angular 2 would spell the end for Angular. URL Link : http://learnangular2.com/templates/ Best example of hel...

Angular 2 introduction

Angular 2 is the next version of Google’s massively popular MV* framework for building complex applications in the browser (and beyond). Angular 2 comes with almost everything you need to build a complicated frontend web or mobile apps, from powerful templates to fast rendering, data management, HTTP services, form handling. Angular 2 is the next version of Google’s massively popular MV* framework for building complex applications in the browser (and beyond). When Angular 2 was announced in October 2014 at the ngEurope conference, the ngCommunity was up in arms: what did this mean for their favorite framework they invested so much time into learning and building real things with? A lot of Angular developers were worried that Angular 2 would spell the end for Angular. URL Link : http://learnangular2.com/templates/ After that, we start dissecting how Angular 2 apps function at their most fundamental level. We dive right into the heart of Angular 2 which includes und...

Using php print pattern

This is not new concept, you need to follow same concept like C programming to print number pattern in php. every time on interview ask question print pattern. this is important note please keep it. Output : Code : <?php for($a=1; $a<=5; $a++) { for($b=$a; $b>=1; $b--) { echo "$b"; } echo "<br>"; } ?> Now simple print one column then only one for loop use to print pattern  This is not new concept, you need to follow same concept like C programming to print star pattern or triangle of star. Output : Code : <?php for ($row = 1; $row <= 5; $row++) { echo "* </br>"; } ?> print * in square size as following manner and please follow following code : Code : <?php for ($row = 1; $row <= 5; $row++) { for ($col = 1; $col <= 5; $col++) { echo '* '; } echo "</br>"; } ?> PHP start pattern of trangle as output and code here : Output : Code ...

What is reCAPTCHA?

Captcha Purpose : captcha basically use for protect unwanted spam attach and unwanted person hacker, today trend on captcha code mostly use in signup, sign in process,contact us page etc as per user depend reuirement. Note : reCAPTCHA is not working on local or localhost, please run code on live server. What is reCAPTCHA? reCAPTCHA is a free service that protects your website from spam and abuse. reCAPTCHA uses an advanced risk analysis engine and adaptive CAPTCHAs to keep automated software from engaging in abusive activities on your site. It does this while letting your valid users pass through with ease. client side integration link are paste in your page which is show in step 1 in google and paste into header tag your projects, Advantage : 1-main things is reCAPTCHA is prevent spam, 2-robotics attack, 3-essay understand to human, 4-advance sequirites, 5-human effort channeling the time spend solving captcha into digitizing text, 6-captcha can not read by compute...