createSection(); $Text_to_Add = htmlentities("Me & my Code"); $section->addText($Text_to_Add); // At least write the document to webspace: header("Cache-Control: public"); header("Content-Description: File Transfer"); header("Content-Disposition: attachment; filename=helloWorld.docx"); header("Content-Type: application/docx"); header("Content-Transfer-Encoding: binary"); $objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'Word2007'); $objWriter->save('helloWorld.docx');