In message <[EMAIL PROTECTED]>, onurdyh <[EMAIL PROTECTED]> writes > I have a little problem about "session.save_path" >I took that message >"Warning: session_start(): Cannot send session cookie - headers already sent >by >.." > how can I solve it? >DyhOnur..
This usually means that you have something - even a blank space - being sent to the browser before session_start() appears in your code. This must be the very first command to go to the browser. Much more likely to be this, than session.save_path -- Pete Clark Sunny Andalucia http://www.hotcosta.com/comm_1.htm
