file creation on client machine

"rui" <[email protected]>
Newsgroups gmane.comp.php.windows
Message-ID <[email protected]>
hi all

i have this working on my php page.

$myFile = "c:\test\testFile.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
$stringData = "Bobby Bopper\n";
fwrite($fh, $stringData);
$stringData = "Tracy Tanner\n";
fwrite($fh, $stringData);
fclose($fh);

this works very good , and when its processed it creates the file on the 
specified location on the server .

i want to know if its possible that the file is created on the machine the 
runs the page , in this client some client machine .

thks in advanced

rgds
rui 


-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.