hello. the scenario:
A query returns item number and size information for a piece of clothing
Additional queries check for extended sizes of that item, such as petite and tall; extended sizes have a unique item number.
Loop:
for ( $y = 0; $y < $nrows_ext_size_desc; $y++ )
{
$init_ext_size_results[] = $ext_size_results["SZ_ALPHA"][$y];
}
Display:
foreach ($init_ext_size_results as $unique_ext_size_results)
{
echo "$unique_ext_size_results";
}
A typical result is, however:
Extended sizes for item #1234: P0, P2, P4 (petite)
and immediately following..
Extended sizes for item #1235: P0, P2, P4, T10, T12, T14 (tall)
The last result should only display TALL sizes, but it is actually displaying the entire array results of $init_ext_size_results[].
anyone see anything obvious here? thanks for your time.
knelson