PHP conditional constructs are used to make decisions. Programmers check the different conditions and run blocks of code accordingly. It
Continue reading »Category: PHP
PHP post category considers PHP setup, Logical questions and answer, Types of Array and syntax, PHP functions, PHP class and objects, PHP framework, etc.
PHP Loop: For, While, Do While And Foreach
PHP loops are used to execute a statement or a statement block, multiple times until and unless a specific condition
Continue reading »PHP Operators
PHP operators work on the variable or value which can be one or more. We can say that it takes
Continue reading »Data Types, Constants and Variables in PHP
In the previous article, we have learned Print Statement, Code Blocks, and Commenting. In this article, we will learn the
Continue reading »Print Statement, Code Blocks and Commenting in PHP
PHP is one of the most frequently used Web languages. On the back-end, the vast majority of websites that you visit are built with PHP.
Continue reading »Overview of PHP
PHP is an easy, server-side scripting language. This helps developers to build web page layout logic and handle data from
Continue reading »PHP MVC application: Model, View and Controller
MVC stands for Controller-View-Model is a method of application design, separating application data and business logic (model) from the presentation
Continue reading »Print Stars Pattern In PHP
Below you will find different patterns of stars in PHP. Also you can apply in different languages like: c, c++ etc.
Continue reading »Sort array without using any built in function in php
Sometimes in a PHP interview, you may come across the task to sort an array in PHP without using any
Continue reading »Reverse String Without Using Any Function in PHP
Reversing a string in PHP is completely simple to use inbuild function “strrev()”. However often you may consider the task
Continue reading »