Hey,
Currently i try to create some of my database export work more automated and i decided to go with exporting data from MySql database to .doc file in
php.
So im doing some database work and store complete html to a $str variable and then write/make new file:
$fp = fopen($file, 'w+');
fwrite($fp,$str);
fclose($fp);
The problem here
…