Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Write a PHP code to print following number pattern:
123
456
789

Answers were Sorted based on User's Feedback



Write a PHP code to print following number pattern: 123 456 789..

Answer / sheetal

<?php
$k=1;
while($k<9)
{
for($i=1;$i<=3;$i++)
{
echo $k;
$k++;
}
echo "</br>";
}
?>

Is This Answer Correct ?    7 Yes 0 No

Write a PHP code to print following number pattern: 123 456 789..

Answer / akashumate

<? php

$i=1;

while($i<=3)
{
echo $i;
$i++;
}
echo "<br>" ;
$j=$i;
while($j<=6)
{
echo $j;
$j++;
}
echo "<br>" ;

$k=$j;
while ($k<=9)
{
echo $k;
$k++;
}
echo "<br>" ;

? >

Is This Answer Correct ?    2 Yes 1 No

Write a PHP code to print following number pattern: 123 456 789..

Answer / sam

<?php
$num = "";
for($i = 1; $i<=9; $i++ )
{
if($i%3 == 1)
{
echo "<br />";
}
echo $i;
}
?>

Is This Answer Correct ?    2 Yes 1 No

Write a PHP code to print following number pattern: 123 456 789..

Answer / ronak sharma

<?php
$count=0;
for($i=1;$i<=3;$i++)
{
for($j=1;$j<=3;$j++)
{
$count++;
echo $count;
}

echo "<br>";
}

?>

Is This Answer Correct ?    1 Yes 0 No

Write a PHP code to print following number pattern: 123 456 789..

Answer / rajendra

<?php
$num = "";
for($i=1;$i<=9;$i++) {

$num .= $i;
if($i%3==0){
$num .="<br />";
}

}
echo $num;
?>

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More PHP Interview Questions

Is php a middleware?

0 Answers  


Explain the advantages of using PHP?

0 Answers  


What is the basic syntax of Php?

0 Answers  


How do I escape in php?

0 Answers  


Which is not a file-related function in php?

0 Answers  


Does facebook use php framework?

0 Answers  


write code to find the date difference b/w two given date using PHP not MYSQL function?

3 Answers   HyperQuality, Synctra Solutions,


Write down the code for save an uploaded file in php.

0 Answers  


List few sensible functions in PHP?

0 Answers  


What is php? Why it is used?

0 Answers  


What are php errors?

0 Answers  


What is difference between print and echo in php?

0 Answers  


Categories