I am able to read a cookie which is set in servlet through php3 program. but not able to read a cookie which is set in php3 through
servlet.
code for php is <?php $HTTP_COOKIE_VARS["abc"];
code for java servlet Cookie c[]=req.getCookies();
if(c!=null)
{
for(int i=0;i<c.length;i++)
{ login=c.getName();
out.println(login);
out.println(c.getValue()+"<BR>");
}
}