I have this program created in PHP using MVC pattern.
I am using sessions for the program.
I am starting the session in bootstrap which is straight after the index.php
the session name is changed before starting session in bootstrap ... getting to the question after slight more info.
I wanted to know how to delete session cookie.
when someone logs in a session is created with...
Search Result
Collapse
3 results in 0.0032 seconds.
Keywords
Members
Tags
-
logout in php
Hi,I have created a script where I want to use onclick event and javascript to log out.Here r my coodes ..
Code:<script type="text/javascript"> function logout(){ <?php session_destroy();?> } </script> <body> <a href="#" onclick="logout()">logout</a> </body>
-
ftp Logout
Hi,
I'm adding an enhancement to a ftp website wrote in C# that I didn't write. I'm not all that proficient with ftp but I know C#.
The site logs in to the server when creating the connection, but they want a Logoff button, and I was wondering what the syntax for that was.
Thanks for any response.
Jim