Pages

Print Star Pattern in PHP



Print Star Pattern in PHP

Hello friends today we learn most important program Print Star Pattern in PHP, It is very simple to write just follow C programming concept. In C programming we use printf function for print message on screen but in php use echo for print message on web page. and C use \n for new line but in PHP we use </br> tag for new line. So remember these two steps for this types of coding in PHP.

Print Give pattern in php

*
* *
* * *
* * * *
* * * * *
* * * * * *
* * * * * * *
* * * * * *
* * * * *
* * * *
* * *
* *
*

Code for Print Star Pattern in PHP

<?php
for($i=0;$i<=6;$i++){
for($k=6;$k>=$i;$k--){
echo " &nbsp;";
}
for($j=1;$j<=$i;$j++){
echo "* &nbsp;";
}
echo "<br>";
}
for($i=5;$i>=1;$i--){
for($k=6;$k>=$i;$k--){
echo " &nbsp;";
}
for($j=1;$j<=$i;$j++){
echo "* &nbsp;";
}
echo "<br>";
}
?>



No comments:

Post a Comment

 

Most Reading