Hi, I am trying to write a for loop that adds to the end of a variable name an increment of 1. This way I can loop through x amount of items, and dynamically create the names (values are already being provided by HTTP_POST_VARS). What is the proper way to do this, if it is possible?
This is what I think it might look like:
for ($iteration = 1; $iteration <= $item_count; $iteration++) {
echo $item"$iteration";
}
John