Difference between Break and Continue | Break vs. Continue
Difference between Break and Continue Break Continue Break is used to terminate the execution of the loop. Continue is not used to terminate the execution of loop. It breaks the…
Difference between Compiler and interpreter | Compiler vs. Interpreter
Difference between Compiler and interpreter Compiler Interpreter Scanning Compiler scans the entire program first and then translates into machine code. Interpreter scans and translates the program line by line…
Array in PHP | PHP Array
An array is a kind of special variable having more than one value which shares same name but different index or id. What is an array in PHP? An array…
Nano Nails | Nano Nails Wearable Technology | Nano Nails by Tech Tips
There is no doubt that this is an era of wearable technologies. Many wearable technologies are there nowadays Google Glass , Smart Watch and many more. Now another one that…
Loops in PHP | Control Structure in PHP
1. While Loop in PHP : Syntax : while(expression) { Statements to be executed; } It executed the nested statements repeatedly as long as the while expression evaluates to TRUE.…
Control Structures in PHP | Decision Making in PHP
The if, and construct are one of the most important features of many languages including PHP, these conditional statements provides you different action for the different conditions. IF Statement in PHP :…
Operators in PHP | PHP Operators
Operators in PHP | PHP Operators There are three types of operators: Firstly there is the unary operator which operates on only one value. (For Example, ++ increment operator) The…
Variables in PHP | PHP Variables
Variables in PHP : Variables in PHP are represented by a dollar sign followed by the name of the variable. The variable name is case sensitive. ($a and $A are…
First PHP Script | First PHP Program
Some important things to know before starting first PHP script : A PHP file contains tags of HTML and some code of PHP script. A PHP script always starts with…
What is phpinfo() ? | phpinfo()
phpinfo() function provides large amount of information regarding the current state of PHP. This function gives information regarding version of PHP, PHP environment, OS version, compilation and extensions options, local…