You know that there are two parts to an array cell(or what ever you want to call it) right?
array[0] = "red";
echo array[0] and get "red";
0 is the key.
"red" is the value.
so, you can do a foreach loop with just he value like this
foreach($array as $value)
{
$value = "red";
}
or with key and value
foreach($array as $key=>$value)
{
$key = 0;
$value = "red";
}
Maybe that will help, ya?
You can stick it at the very top of the script and it will replace all "_" with "." in the $_POST names.
Last edited by R0bb0b; Jul 15th, 2008 at 10:13 pm.
“Be who you are and say what you feel because those who mind don't matter and those who matter don't mind.” - Dr. Seuss
-- The documentation is inevitable, you may get away with it for a little while but eventually you too will have to do the deed.