empting to write a null string, which
apparently gives an erro :)
Thanks for the help anyway ;)
chris kranz
fatcuban.com
-Original Message-
From: Sven Schnitzke [mailto:[EMAIL PROTECTED]
Sent: 26 February 2003 09:30
To: 'Chris Kranz'
Subject: AW: [PHP-WIN] file write issues...
running this script command line...
$temp_file = "temp_file.txt";
if( !file_exists( $temp_file ) )
{
touch( $temp_file ) or die( "couldn't create new file" );
}
$fp = fopen( $temp_file, "wb" ) or die( "file opening failed" );
fwrite( $fp, $cvs ) or die( "write file failed" );
fclose( $fp );
do