I've been able to open a file on the webserver and write information to it, but I want to be able to write to a file on the user's computer. It's just a csv file and it's for a report. I'm using this:
PHP Code:
   if (!$handle fopen('C:\\data\\info.csv'"w")) {
         echo 
"Cannot open file ($filename)";
         exit;
   } 
but that doesn't seem to work. Help?