so i am generating a bunch of arrays, lets say called something like
disaster1[1]
disaster2[1]
disaster3[1]
diaster4[1]
diaster4[2]
so on and so on....maybe i have 25 disasters.
now i am reading this variable in from a page, i don't want to hardcode it...so what if i have a while statement maybe like
in theory, this is what i want to work in sort of pseudo code...this doesn't work, how can i fix it?
while ($x < 26)
{
echo "$disaster$x[1]";
}