if i use somthing like this to manage all the formVars
how can store each var as a session var ??
foreach($_POST as $varname => $value)
$formVars[$varname] = trim($value, 255);
i was thinking...
foreach($_POST as $varname => $value)
$formVars[$varname] = trim($value, 255);
$_SESSION[$varname] = $formVars[$varname];
is that the best solution?
as i said i can't think too well right now... im just trying to make a deadline..
thanks for your help.