I wish this is the right place to post this topic.

I moved recently from one server to another, and my script suddenly give me this error:

Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/sites/our-cross.net/public_html/dusk/inc/informazioni.php:1) in /home/sites/our-cross.net/public_html/dusk/inc/sessione.php on line 2

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/sites/our-cross.net/public_html/dusk/inc/informazioni.php:1) in /home/sites/our-cross.net/public_html/dusk/inc/sessione.php on line 2

this is sessione.php lines 1 and 2:
<?php
session_start();

I'm not able to see any error, could you please help me?
On other servers the script works just fine =(

    Make sure that there is nothing - including spaces, tabs, or newlines - before the opening <?php tag. Also make sure that your files are saved as either plain ASCII text files or as UTF-8 files with no BOM (byte order mark), as any BOM will be before that opening <?php tag and would therefore generate output prior to the session_start().

      It was the encoding...
      the program we used changed some encoding from utf-8 to ansi...
      Thank you VERY VERY VERY much __

        Write a Reply...