the set cookie doesn't work.. I've found a work-around solution but it's kinda lame..
it use to be something like :
setcookie("TestCookie", "someinfo");
header("Location: main.php");
Now it's like:
setcookie("TestCookie", "someinfo");
?>
<META HTTP-EQUIV="Refresh" CONTENT="0; URL=main.php">
<?php
But that's cheap... The reason I had to do it that way is because if I have a header after the setcookie... the cookie never gets set, but once I removed the header and did the html equivalent then it works fine...
Anyone have any ideas on how to get it working like I had it before?