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();
}
?>
|
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?
|
|||
|
Your PHP syntax is all wrong (Yes you missed some
But I suggest you use array for this. Array is more convenient.
Here your
Now |
|||||||
|
|
You can do it as stated in another answer, but usually the following is suited better:
So you can access answer #4 with:
|
|||
|
|
|
You should consider using a multidimensional array like:
... or ...
|
|||
|
|
= array(), not= new array().) – DCoder Jan 12 at 14:30