Team,
I am having an issue with this code. I have a for loop with an echo statement and I want to automatically make the variables change as my table echos out:
for ($i = 1 ; $i <=$actual_number_of_stories ; $i++)
{
echo"<tr><td>$i</td><td><input type=text name=1floor_area_occ1 size=2 >ft<sup>2</sup></td></tr>"
}
The second iteration I want the same thing, but I want to change the 1floor_area_occ1 size to 2floor_area_occ1 size
And then 3floor_area_occ1 size
etc, etc.
I want to use that $i in front of the floor_area_occ1, but I can't get there. : (
I am sure it is simple