- Warning: session_start(): Cannot send session cookie - headers already sent by (output started at ...............
- Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at ...........
- Warning: Cannot modify header information - headers already sent by (output started at...........................
I tried to analyse what false that happened in that script, here are the result :
>> all things that happen above caused by
1.there are blank lines in the end of your script after "?php>" code. better if you try to upload with ASCII mode for pages.
2.The PHP function such as headers(), used with start_session(), produces HTML headers. When the PHP fragments are placed in the body of the HTML, this causes errors because the PHP fragments are trying to put HTML headers within the HTML body. Put the PHP fragments before the HTML body tag.
I hope this is useful for you which has same problem with me before.

