Twisted Sessions..... :twisted:
Posted: Sun Aug 10, 2003 10:04 am
Can anyone tell me how does sessions in PHP works?
does all sessions that is being created with :
Does this use cookies?
Is there anyway that I can create session variables without using cookie
or hidden form element?
I created a page using session vaiables ... $_SESSION("var"] ...
thats works on Linux Mozilla brower but it crooked on IE...
Thanks for reading,
Andrew

does all sessions that is being created with :
Code: Select all
<?php
$a = session_start();
$_SESSION["var"] = 0
?>Is there anyway that I can create session variables without using cookie
or hidden form element?
I created a page using session vaiables ... $_SESSION("var"] ...
thats works on Linux Mozilla brower but it crooked on IE...
Thanks for reading,
Andrew