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

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to check if a string contains a character or word in php?

979


What type of operation is needed when passing values through a form or an url?

929


What is php string function?

960


Tell me how is it possible to remove escape characters from a string?

912


What types of MYSQL function available for affecting columns

903


What is the use of @ in php?

1002


What is $globals php?

962


Explain setcookie() function in php?

979


What is the difference between print() and echo()?

996


Which is correct about mysqli and pdo?

1029


What is difference between strstr() and stristr() in PHP?

940


What is the mysql injection?

950


Explain the difference between isset() and empty()?

900


What is difference between Method overriding and overloading in PHP?

1004


Tell me how to retrieve a cookie value?

968