Numeric Data Types: INT (Integer): Int data type represents an integer of normal size. So simply it can used to store numeric value. There
Month: March 2017
The do-while loop
Difference Between while and do…while Loop: With a while loop, the condition to be evaluated is tested at the beginning of each loop statement,
The While Loop
A While loop is used when we have to repeat a set of statements as long as the condition is false. It could be
PHP -Building Blocks
If –else statements: if…else statement – executes set of codes if a condition is true and another code if the condition is false Within
The For Loop
PHP for loop can be used to traverse set of code for the specified number of times. For example if you want to repeat
PHP Superglobals
We already learned about variables, but there are some Readymade or predefined keywords in PHP that can be used without you having to create
Arrays in PHP
An array is a data structure that stores similar type of values in a common variable. Arrays are also called homogeneous data type. For
PHP – Date / Time Functions
When working in any programming language, dealing with dates and time is a simple task. That is, until time zones have to be supported.