You see we don't know what number user inputs, could be 14, could be 2 or 50, as far as we know is that when we generate information from aaray, that for the first item that would be generated $a1, there is a number assigned to it.
When I re-generate information, I want to be able to generate $a1 again, as a VARIABLE, and show then number that was entered on previous page.
For that matter when i'm displaying an item:
while ($row5 = mysql_fetch_array($result5)) {
extract($row5);
// let's say in this case first id would be 1
echo "$id";
// now i need to create a variable that would get me $a1
??????
// now the value of $a1 should be what user entered on previous page
echo "$a1";
}
perhaps i'm asking for too much? Maybe someone else has another way to SAVE information (units) when i'm trying to pull information of products from 2 different databases, and where one is based on the other. Perhaps I have a bad way of storing values??
Thanks