Hi there!
I have problem!
Why doesn't the following work?
...
for($ques=1; $ques <= $totalques; $ques++){
print "<tr><td>question number$ques:</td>";
print "<td>$question$s</td></tr>";
}
....
I get totalques from parameters and it works fine. QUESTION$ques also works fine. But when I try to print $question$ques it prints only nubers 1,2,3 (if totalques is 3).
I get $question1, $question2, ..., $question25 also from parameters
What can I do??