Is there any way to use session variables without using cookies in PHP? Any and all answers would greatly be appreciated.
Use SID to pass the Session Id in the URL as below: print('<form action="xxx.php?'.SID.'" method="POST"'); This way the session Id will be passed between pages. Hope that helps.
For authentication/permissions?