in reply to Re^5: WWW Mechanize and JavaScript Cookie
in thread WWW Mechanize and JavaScript Cookie
As you can see, the perl output shows the content of the cookie wrote with PHP ('TestCookie'), not the cookie I wrote via JavaScript ('cookJS').<?php setcookie("TestCookie", 'mytest', time()+3600, "/", "localhost", 0); ?> <html> <head> <script> function setCookie(cookieName,cookieValue,nDays) { var today = new Date(); var expire = new Date(); if (nDays==null || nDays==0) nDays=1; expire.setTime(today.getTime() + 3600000*24*nDays); document.cookie = cookieName+"="+escape(cookieValue) + ";expires="+expire.toUTCString(); } function ReadCookie(cookieName) { var theCookie=""+document.cookie; var ind=theCookie.indexOf(cookieName+"="); if (ind==-1 || cookieName=="") return ""; var ind1=theCookie.indexOf(";",ind); if (ind1==-1) ind1=theCookie.length; return unescape(theCookie.substring(ind+cookieName.length+1,ind1)); } setCookie('cookJS','prova13',5); alert('- - -'); alert(ReadCookie('TestCookie') ); alert(ReadCookie('cookJS') ); alert('- - -'); </script> </head> <body> </body> </html>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: WWW Mechanize and JavaScript Cookie
by Anonymous Monk on Mar 16, 2011 at 16:46 UTC | |
by saintex (Scribe) on Mar 16, 2011 at 22:11 UTC | |
by saintex (Scribe) on Mar 18, 2011 at 10:16 UTC | |
by Anonymous Monk on Mar 18, 2011 at 15:29 UTC | |
by saintex (Scribe) on Mar 19, 2011 at 08:51 UTC | |
|