On Fri, Jun 13, 2008 at 5:49 PM, R B <[EMAIL PROTECTED]> wrote:
> Hello.
>
> I have this script (script1.php):
>
> <?php
>  $a = "Hello";
>  header("Location: script2.php");
> ?>
>
> I need to send the $a variable to script2.php, but i don“t want to send it
> in the url.
>
> Is there another method?

<?php
// script1.php
session_start();
$_SESSION['a'] = "Hello";
header("Location: script2.php");
exit(0);
?>

<?php
// script2.php
session_start();
$a = $_SESSION['a'];
echo $_SESSION['a'];
?>

-- 
</Daniel P. Brown>
Dedicated Servers - Intel 2.4GHz w/2TB bandwidth/mo. starting at just
$59.99/mo. with no contract!
Dedicated servers, VPS, and hosting from $2.50/mo.

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

Reply via email to