Re: Another way to send variables

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Fri, Jun 13, 2008 at 5:49 PM, R B <rbpphp@xxxxxxxxx> 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



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux