Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to make 10 variables with name as answer-1,answer-2,answer-3 and so on. Can i use for loop in such a manner to create variables, if not then how can i do it?

<?php
for(i=1;i<=10;i++){
$answer_+i=new array();
}
?>
share|improve this question
That is known as variable variables. But 99% of the time, you should leave that "feature" alone and use a multidimensional array instead. (Also, it's simply = array(), not = new array().) – DCoder Jan 12 at 14:30

3 Answers

up vote 2 down vote accepted

Your PHP syntax is all wrong (Yes you missed some $s and added extra new). You can create them using following syntax. Its called variable variables

for($i=1;$i<=10;$i++){
    ${"answer_$i"} = array();
}

But I suggest you use array for this. Array is more convenient.

for($i=1;$i<=10;$i++){
    $answer[$i] = array();
}

Here your $answer_1 will be $answer[1]. Best is to use no explicit index

for($i=1;$i<=10;$i++){
    $answer[] = array();
}

Now $answer_1 will be $answer[0]. You can loop over it by for, foreach, can use a lot of array functions.

share|improve this answer
Can i do this way <?php $correct=0; $i=1; while($i<=10) { $answer="answer_".$i; echo $answer."<br/>"; echo "$_POST[$answer]"; $i++; } – TeamA1 Jan 12 at 16:11
Yes. that'll just set answer_1, answer_2 ... keys to $_POST – shiplu.mokadd.im Jan 12 at 16:14
while($i<=10) { $answer="answer-".$i; ${"answer-$i"}=$_POST[$answer]; $i++; } Is this possible? I am doubtfull about ${"answer-$i"} – TeamA1 Jan 12 at 16:49

You can do it as stated in another answer, but usually the following is suited better:

<?php
$answers = array();
for($i=1;$i<=10;$i++){
$answers[]= array("blah", "123");
}
?>

So you can access answer #4 with:

<?php
$answers = array();
for($i=1;$i<=10;$i++){
$answers[]= array("blah", $i);
}
echo $answers[3] //array indexes start at 0!
?>
share|improve this answer

You should consider using a multidimensional array like:

$answers = array(
  1 => array(),
  2 => array()
);

... or ...

for($i=1;$i<=10;$i++)
  $answers[$i] = array();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.