Page is a not externally linkable
jd01 - 6:55 am on Oct 6, 2009 (gmt 0)
for($i=0; $i<$value; $i++) Only stores the value of $PactTye as of the last iteration of the loop, not all iterations, so if it has something to do with the function: selectProduction you can expect to only get the last value passed... (IOW Your current code has the value of $PackTye set to change every time through the for loop and finally ends up at the last value passed by the POST, which appears to be F.) for($i=0; $i<$value; $i++) Would probably work better for you.
This section of code:
{
$PackTye = $_POST["packTy"][$i];
echo '.$PackTye.';
}
{
$PackTye[$i] = $_POST["packTy"][$i];
echo '.$PackTye.';
}
Then you can reference $PackTye[NUMBER] for your outputs.