Variable transfer through forms

A

Anonymous

Guest
In order to transfer some values in a form through the method post, i use a matrix of hidden fields
The code:
<input type="hidden" name="answer[$i][$j]" value="blah blah">

In the script that deals with this data, the variable $answer[$i][$j],$i and j are values that run in some intervals,prints "Array[something]" and not "blah blah".

What can i do? 8O
 
Give me an example or somewhere I can see what you're doing!
 
I've solved the problem in a different way.But here is the example of code.I'm intrigged why isn't it working:

$j=0;
while($j<15)
{
for($k=0;$k<$nom;$k++)
{
print("<input type='hidden' name='id_q[$j]' value=$linefin[1]>");
print(" <input type=\"checkbox\" name=\"checkbox[$j][$k]\">
<input type='hidden' name='id_a[$j][$k]' value=$lineans[1]>
<input type='hidden' name='corect[$j][$k]' value=$lineans[2> <br>");
print("<input type='hidden' name='quest_no[$j]' value=blah blah>");
$j++;
}
}

In the script that uses the data, print("$id_a[$j][$k]") gives Array[]
 
Instead of passing all these hidden values in this manner, why don't you just store the whole array in a session or cookie? It would be much simpler!
 
Back
Top