i'm working on an e-commerce website and i'm trying to get the checkout page to work, it keeps giving me this error. how can this error be fixed? any ideas?
Warning: session_start(): Cannot send session cookie - headers already sent
thanks
you need to do session_start() at the beginning of the .php file so that it can send cookie information the the browser.
This information cannot be sent after content has been sent.
For example you cannot echo something then start a session.
i do have the session_start() at the beginning of the php page and it keeps giving me the error.
any ideas of how it can be fixed so that i don't get the error??