How to print chess board in php ?
In this article, we are going to learn to code the Chess board in php. I will present you a code to get the output...
How to print even and odd numbers in php
To print even and odd numbers we can use different types of method. Method:1 Even numbers between 1 to 100 In first method we use...
How to print stars along with there equal number
We can print a star pyramid pattern in php along with there row number using ‘for’ loops. To print this pattren we will use a...
How to print a triangular pattern in php
We can print this pattern in php. For this we need Variables and ‘for’ loops. First we have Variables in which Symbols are passing as...
How to add digits of a numeric series
We can print a numeric pyramid series and also can print the sum of every row using php code. We need two ‘for’ loops to...
How to print a numeric pattern
We can print this pattern in php. In this pattern we divide our program in two parts. In first part we are using two ‘for’...