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 program to print
[123]
[456]
[789]
note : braces also need to be printed



write a program to print [123] [456] [789] note : braces also need to be printed..

Answer / soujj

$countr = 0;
for($i=1;$i<=9;$i++)
{
$countr++;
$str[] = $i;
if($countr % 3 == 0)
{
echo "[";
for($j=0;$j<=2;$j++)
{
echo $str[$j];
}
echo "]";
$str=array();
}
}

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More PHP Interview Questions

Explain include(), include_once, require() and require_once?

0 Answers  


What will the ?getdate() function returns in PHP?

0 Answers  


A process is identified by a unique___

0 Answers  


how much can a 1yr experienced php programmer earn in india?

9 Answers   TCS, Tops Technologies,


What are the difference between array_keys() and array_key_exists() in php?

0 Answers  


Where sessions stored in PHP?

0 Answers  


Do you know what is the differences between $a != $B and $a !== $B?

0 Answers  


Is multilevel inheritance possible in php?

0 Answers  


Which have the fastest execution between mysql_fetch_array() and mysql_fetch_assoc()

0 Answers  


This is regarding file uploading. 1. Who will be the owner of the uploaded file ? 2. What permission you will give for an uploaded file ? 3. What is mean by user, group and others and what kind of permission you will give for each user and explain the reason?

1 Answers   IBM,


How to count a number of words in a string in php?

0 Answers  


How to check a variable is an array or not in php?

0 Answers  


Categories