session_start() and fopen

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hello, would you please help me on this issue that is making me crazy?

 

 

I start a session with session_start() and I need to write a file, the file
is written twice! If I remove session_start the code works obviously fine.

I used  the date as name of file so I can see the problem, otherwise the
file is overwritten.

 

session_start();

$nome = date("Ymd-His");

$path = $nome . ".xml";

$fh = fopen($path, 'w');

if ($fh) {

    fwrite($fh, 'ciao');

    fclose($fh);

            echo $path;

} 

 

does someone have an answer?


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux