ok I see how that could be an issue.
Here is my big problem that I have not been able to figure out.
I have a client website that I am trying to fix
1. it has sessions in database, and uses set cookie
2. I can login with firefox/netscape/mozilla just fine
3. I cannot login with any version of IE
4. this is also by going to domain.com or www.domain.com, neither work
any ideas?
Randy
Marek Kilimajer wrote:
Randy Johnson wrote:
setcookie( "sess_key",$key,0,"/","." . str_replace( "www","",$_SERVER["SERVER_NAME"] ),0 );
Does that look right?
No.
if $_SERVER["SERVER_NAME"] == 'www.domain.com'
"." . str_replace("www","",$_SERVER["SERVER_NAME"] )
will give you "..domain.com"
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php