This what i have so far.
require_once 'library/phpdocx/classes/CreateDocx.inc';
$docx = new CreateDocx();
$text = 'Phpdocx. Easily create Word and PDF documents online';
$docx->addText($text);
$filename = 'tutorial_2.docx';
$docx->createDocx($filename);