Heya, I just wanted to ask, if you don't mind to share your code, that you post it here (or mail it back to me), I could use a Facebook Connect thingy but if I can avoid to dive into it I'd be happier :)
Also just a precision about that: >> setCookie also uses headers to set the cookie, but as the >> headers have already been sent, it >> (surprisingly enough) cannot send any more headers. What php means by "headers already sent" is that some page content has been sent already, which forces the headers to be dispatched, and if you look at the http protocol it is like this : > Header: Value > Header2: Value > > Content Which means that once content is started, you can't go back to add headers, since it's already in the pipe. Cheers, Jordi _______________________________________________ users mailing list [email protected] http://lists.agavi.org/mailman/listinfo/users
