Do you know How to display more records while scrolling the page down using JQuery and PHP? If you are familiar with jQuery and PHP, then it is not hard nut to crack. Have a look on below code and you can do the same. Include JQuery library File: Include JQuery library File: <script type=’text/javascript’…
Detect HTML5 usage If you want to see that a website is using HTML5 elements or not, you only need to view the source of the website. If the source code starts with the following declaration. <!DOCTYPE HTML> Then, website was marked up with HTML5. By using the HTML5 DocType, you can let the browser…
Social network by internet giant is “Google+” getting popular exponentially and of course they already have a huge customer database and all they have to do is to promote this new product among them.However people know the fact that Google+ is very special kind of social network with very unique features. In parallel to…
Recursion and recursive routines is a bit more complicated, it can be defined as a regular function that calls itself. Learning when and how to apply recursion is probably a lot more difficult than just learning what recursion is? and being able to explain recursion effectively in an interview situation is even more difficult…
Equal and Identical comparison operators in PHP When comparing values in PHP for equality you can use either the == (equal) operator or the === (identical) operator. Do you know, what is the difference? Very simple the == operator just checks to see if the left and right values are equal. But, the === operator…
Hopefully, you can think that !== operator as being more ‘strict’ than the != operator. This is because the !== operator will say that the two operands being compared are not equal only if the type of the two operands are the same, but their values are not equal. This is desirable behaviour because the…