i need to forward variables from a from from one page to another
but cause of the version of the php, i need to get them all with
$varname= $_POST[varname];
i don't want to do this for each of them
i need a smarter way
i think there was $HTTP_POST_DATA[] array
where $HTTP_POST_DATA[0] is the variable from the first field
$HTTP_POST_DATA[1] from the second and so on...
i'm not sure if that's the exact name, and probably isn't cause it does not work.... and i also can't find it on php.net
also i think that $HTTP_POST_VARS[] is associative array only
and i need to use the exact name of each field....which isn't what i want, because i'll have to change the form often and don't want to use exact names in the second page....
well how to get all variables on the second page, without needing to change anything there, even if i change the form names on the first page?