Hi again, today is very hard for me with php...
I've another prolem.
I have this variables passed from an HTML form: $box1, $box2 and $box3.
I need to get the corresponding values with a for function, but I can't write the correct name of the variable because I don't know how many $boxn var I have.
I do this:
for ($i = 1; $i <= $numvar; $i++) {
echo $box&$i; //this should be $box1, then $box2 and so on...
}
Anyone can help?
Thanks