PHP Break

PHP break statement stop the execution of the current Control loop Statement like for, while, do-while, switch, and for each loop. If you use break statement inside inner loop body, it breaks the execution of inner loop only. The break statement can be used to jump out of a loop.Learn PHP Break tutorials....

PHP do while loop

Learn PHP do while loop tutorials. The do while loop executes a block of code once and then runs the loop as long as the given condition is true.PHP do while loop executes the code at least once always...

PHP foreach loop

The foreach loop is used to get each element value in an array. foreach loop is used to loop through each key/value pair in an array. Learn PHP foreach loop tutorials....

PHP session

PHP session is used to store data on server side. session_id is a unique number which is used to identify every user in a session based environment.Learn php session tutorials...

Learn How to Install PHP

Learn How to Install PHP. You can install php using WAMP for Windows, LAMP for Linux, MAMP for Mac, SAMP for Solaris, FAMP for FreeBSD, XAMPP (Cross, Apache, MySQL, PHP, Perl) for Cross Platform: It includes some other components too such as FileZilla, OpenSSL, Webalizer, Mercury Mail, etc....

Learn PHP Syntax

The PHP syntax and semantics are the format and the related meanings of the text and symbols in the PHP programming language. They form a set of rules that define how a PHP program can be written and interpreted...

Learn Tutorial for What is PHP?

PHP is an open-source, interpreted, and object-oriented scripting language that can be executed at the server-side. PHP is well suited for web development. Therefore, it is used to develop web applications that executes on the server and generates the dynamic page....