cookies for all OSs

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
oldtimer
Forum Contributor
Posts: 204
Joined: Sun Nov 03, 2002 8:21 pm
Location: Washington State

cookies for all OSs

Post by oldtimer »

I have cookies on my site and this is how you get around. Now ie and netscape work great. But on a linux box running Konqueror you can not log on. input username and password and when it refreshes back to the page you are not logged in.

This is my cookie

Code: Select all

<?php
setcookie("cookie","$valid_user,$email,$fast,$mememe,$class,$hash,$loginuid",604800,"/","www.mydomain.com");

?>
Please not that I am using hashes in several of those cookies parts.
Post Reply