well the actual array values are seperated into their respected values...
if you're trying to get the array of values and search though them then i think this is what you should use...
for instance for an input value to be an array it would require the name to be
Code:
<input type="text" name="varname[]" value="">
then after you submit the data you just do:
PHP Code:
while( list( $key, $val ) = each( $varname ) )
{
echo "<b>" . $key . ":</b> " . $val . "<br>";
}
i think this is the best way to get arrays from your data, pretty much your data will only be an array if you dictate it to be in the input values...
regards,
g-force2k2