How do I place a "remember me" cookie in my website ???

Reply

Join Date: Dec 2008
Posts: 7
Reputation: rogergrippo is an unknown quantity at this point 
Solved Threads: 0
rogergrippo rogergrippo is offline Offline
Newbie Poster

How do I place a "remember me" cookie in my website ???

 
0
  #1
Dec 19th, 2008
I have developed a New Website in HTML. Its a Multi Location or Country Website. For the same I have created the Welcome Page where it will show the list of countries available and I need to place a Remember me Check box so that next time the same computer visit my website it will not have to choose its country and will be directed to the country which it had chosen earlier.

Please tell me How can I place a cookie there. Really I don't have any Idea about cookies nor I know how to create them.

Please help me.
Reply With Quote Quick reply to this message  
Join Date: Dec 2008
Posts: 1
Reputation: anamari990 is an unknown quantity at this point 
Solved Threads: 0
anamari990 anamari990 is offline Offline
Newbie Poster

Re: How do I place a "remember me" cookie in my website ???

 
0
  #2
Dec 26th, 2008
You place this in index.html
. . .
<script type="text/javascript" language="JavaScript">
function cookie1(){
var sadrzaj = document.cookie;
var ime = 'kukac';
var pocetak = sadrzaj.indexOf(ime);
if(pocetak!=-1)
{
var kraj= sadrzaj.indexOf(";", pocetak);
if(kraj==-1){kraj=sadrzaj.length}
pocetak += ime.length + 1;
var vrijednost = sadrzaj.substring(pocetak, kraj);
alert("Cookie procitan: " + vrijednost);
}
else{
var dani = 7;
var datum = new Date();
datum.setTime(datum.getTime()+(dani*24*60*60*1000));
var istjecanje;
istjecanje=datum.toGMTString();
var ispis;
ispis = ime +" = " + ime + "; expires=" + istjecanje + "; path=/" ;
document.cookie = ispis;
alert( "Cookie kreiran: \n" + ispis);
}
}
</script>
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Other Threads in the HTML and CSS Forum
Thread Tools Search this Thread



Tag cloud for HTML and CSS
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC