PDA

View Full Version : need cookie to enter page


anarchy3200
05-13-2003, 07:31 PM
Hi

i have a site with a password protected section and when a user logs i need it to create a single session cookie, to access the other pages the cookie must be there or redired bact to login page
at the moment you can just type in the address of the private section and view the pages

Thanks for any help :thumbsup:

chrismiceli
05-13-2003, 10:50 PM
just put a variable in the cookie, then check for it. On the homepage where they login, add a variable to the cookie.

logged=ture;
document.cookie+=escape("logged=" + logged);

on other pages

cook = document.unescape(document.cookie)
cook.split("=");
if(cook[1]) {
//logged in
{
else {
//not
}

anarchy3200
05-17-2003, 12:42 PM
Thanks alot for the help.:thumbsup: