Since "_" is an invalid character for a domain, does that mean that you will never have an underscore in the any of the form entity names?
if so, you could try this
foreach($_POST as $key=>$value)
{
$_POST[str_replace("_", ".", $key)] = $value;
}
print_r($_POST);
echo "<br />" . $_POST['.co.uk'];
it does work.
Last edited by R0bb0b; Jul 15th, 2008 at 2:59 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.