I have to modify the uploaded .doc or .docx file in php. I googled but i only found how to read that but not as it is. I want the word file as it is and put text at the bottom of that MS Word file. How is this possible anyone know please reply.
Teşekkürler,
I have used following code :- $w='Test'; $fp = fopen('c:/text.doc', 'a+'); fwrite($fp, $w); fclose($fp);
It appended the string but not showing in the word document. When i changed the extension of doc file to xml then it shows the string at the end. why should not it showing in doc file.
Teşekkürler,