Hi Rinku
This is is example to use for session :
----------------------------------------------------------------------------
--------------------------------------------
<?
//first.php
session_start(); // starting session
// session variables must be global
global $sessName;

$sessName="Rinku";
session_register("sessName");
?>

Now you can acess this session variable in another php file as follows :

<?
//second.php
session_start(); // starting session

echo "Name from the session variable is ".$sessName; // This should display
Rinku

?>

Thanks and Regards

Sachin Ramdasi
Solversa Technologies Pvt. Ltd.
Pune - India
Office: (+91) 020 5881741
Cell : (+91) 9822276433

"Rinku Shivnani" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Dear all,
>
> I need session example. Can any of you send me some session
> example in php pls. I wd be thankful to you.
>
>
> Regards,
> Rinku

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

Reply via email to