Congrats!! You have so far covered almost each and every building block of PHP scripting language and all these topics will help you in...
Congrats!! You have so far covered almost each and every building block of PHP scripting language and all these topics will help you in...
File-Inclusion Statements Efficient programmers are always thinking in terms of ensuring reusability and modularity. The most prevalent...
The foreach Statement The foreach looping construct syntax is adept at looping through arrays , pulling each key/value pair from the a...
Looping Statements Although varied approaches exist, looping statements are a fixture in every widespread programming language. Loopi...
Control structures determine the flow of code within an application, defining execution characteristics such as whether and how many time...
When you need to control which php [ more about php scripting language ] code should be parsed and which should not or you want to beauti...
Equality Operators Equality operators (see Table below) , as the name suggest, are used to compare two values, testing for equivale...
Assignment Operators The assignment operators assign a data value to a variable . The simplest form of assignment operator just assign...
All expressions consist of at least one operand and one or more operators. A few examples follow: $a = 5; // assign integer value 5 to...
Converting Between Data Types Using Type Casting Converting values from one datatype to another is known as type casting. A variable ...
A datatype is the generic name assigned to any data sharing a common set of characteristics. Common data types include Boolean, integer...
So far you have learnt about prerequisites for PHP to run on your computer, installation and configuration procedures (of PHP/Apache/IIS)...