"Randy Johnson" <[EMAIL PROTECTED]> wrote in message
000901c2613d$e9223e30$c100a8c0@rjmarket">news:000901c2613d$e9223e30$c100a8c0@rjmarket...
> how could i take all the variables in $_POST[""] and move them to
> $_SESSION[""]?

If I understand correct, you will want something like this:

<?
$var     = $_POST["var"];
session_start();
session_register("var");
?>

And now, in all the scripts on your site, when you execute the
session_start() function, $_SESSION["var"] contains the original contents of
$_POST["var"] .

Grtz,

Leon



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to