Hi,
I really don't know whether this is possible: I would like to dump some php generated data to a txt file in the local directory of the client. How can I do this ? when I use for example
$hFile = fopen( "c:/file.txt", "a+" );
fwrite( $hFile, "\nText: $title\n$poem" );
fclose( $hFile );
the file 'file.txt' is created in my server, not in the client !
Is this possible ?
thanks a million,
m.