I have a FOR that runs the following line:
for ($x=1;$x<=10;$x++)
{
$result=$question[$x]."<br /><b>Correct Answer: ".$question[$x]_answer."</b><br />";
echo $resultado;
}
If I change the $question[$x]_answer to $answer[x] for example, everything works. So my question is, why doesn't it work if I have it with the underscore after the [x]. The part about [x]_answer. Is there a problem with underscore after having a [x] in a variable?