Break will end the execution inside the block, whereas Continue will stop the execution at the point and and continue the remaining looping process of following statements: for, foreach, while, do-while and switch structure.
PHP Basics
The PHP basic section gives the solutions for the people, whoever looking for the beginner level programming knowledge in PHP. This section explains the following PHP basic concepts in details.
PHP Switch
PHP Loop
PHP If else
PHP Constants
PHP constants are identifier for a simple value. The possible datatypes of constants are boolean, integer, double, and string. Once we defined the constant, we cannot change the value of constant and cannot unset the constant. Characteristics of constant: constant is case sensitive by default The name of a constant is uppercase A valid constant […]
PHP Variables
PHP Data Types
How to install PHP on Windows
To run the PHP program we need the following things: PHP file Web server (eg, Apache) Database Web browser (eg, Mozilla, Chrome) We can install PHP and Apache as separately or install the “XAMPP” software which contains PHP, Apache and Mysql package. Here we have explained how to install PHP in your windows system using […]
PHP Basic Syntax
PHP Basic Introduction
What is PHP The abbreviation of PHP is Hypertext Preprocessor. PHP is a server side scripting language. It is an open source, easy programming language; and anyone can learn PHP and implement it in your code. Using PHP people can build a robust, dynamic website. PHP compatible with all major databases such as Mysql, Oracle. […]