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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the purpose of the following files having extensions: frm, myd, and myi? What these files contain?

1004


Which is true about the singleton design pattern?

984


What is the mysql injection?

1049


When do you use define() and when do you use const. What are the main differences between those two?

1105


Which is better mysql or sql?

1058


What does $this do in php?

1018


What is the purpose of pear in php?

1076


What is different between software and app

1805


How to create an array of a group of items inside an html form?

1040


How do you put a space in html?

1055


How can we access the data sent through the url with the get method?

1240


Which methods should be used for sending an email using the variables $to, $subject, and $body?

1204


Require_once(), require(), include(). What is difference between them?

1029


Is php easier than node?

984


How can we define a variable accessible in functions of a php script?

1031