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...
Numeric functions in php
is_numeric() The is_numeric function used to check that the value of a variable is a number or not. Syntax: is_numeric(var_name) Output: Value is a number...
String functions in php
implode() The implode function used to concatenate the array elements as a string with a separator. Syntax: implode(separator, array) Output: Apple,Boy,Cat,Dog explode() This function is...
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’...
How to print alphabet series in php
We can make alphabet pyramid series very easily using PHP. To print this pyramid pattern in php, we can use different types of method. In...
How to make a numeric Polygon in PHP ?
We get the output of a numeric polygon using php ‘Loops’ with logic. Here we use eight Loops for print this diamond patterns in php....
PHP code numeric polygon with odd numbers
We get the output of a numeric polygon using php ‘Loops’. We apply the ‘Loops’ with logic in php coding to get the output of...
How to make a numeric polygon shows only one and a plus sign with numbers.
We get the output of a numeric polygon using php ‘Loops’. We apply the ‘Loops’ with logic in coding to get the diamond patterns in...
How to make a numeric polygon shows only 1 on its border.
We can print diamond patterns in numeric polygon using php ‘Loops’. We apply the ‘Loops’ with logic in php coding to get the output of...
How to make a Star Polygon in PHP ?
We create a star polygon. Here we use eight ‘for’ loops. First and fifth are main and other are nested in these. First for loop...