Hello everyone.
I personally do not have a windows machine let alone IIS.
I have written numerous scripts in PHP, I have been contracted by an independent designer to create a flat file database using Windows IIS.
My question to you is do I need to make any special changes to the fopen() fwrite() fclose() functions.
example in linux/apache I would use:
$file=fopen("./database/database.txt","a");
@fwrite($file, $output);
@fclose($file);
do I need to make changes to the directory structure as well.
Thank you
Mike