Hey Everyone! i am having a problem in my website, the session variables are working properly on local server, but not on live server. I am doing it like this
[php]
session_start();
$_SESSION[‘pin’] = $pin;
[/php]
and i am calling it like this.
[php]
session_start();
$pin = $_SESSION[‘pin’];
echo $pin;
[/php]
pleae help me i am new to this…