addSection(); $section->addText(htmlspecialchars("Normal paragraph. {$filler}")); // Two columns $section = $phpWord->addSection( array( 'colsNum' => 2, 'colsSpace' => 1440, 'breakType' => 'continuous', ) ); $section->addText(htmlspecialchars("Two columns, one inch (1440 twips) spacing. {$filler}")); // Normal $section = $phpWord->addSection(array('breakType' => 'continuous')); $section->addText(htmlspecialchars("Normal paragraph again. {$filler}")); // Three columns $section = $phpWord->addSection( array( 'colsNum' => 3, 'colsSpace' => 720, 'breakType' => 'continuous', ) ); $section->addText(htmlspecialchars("Three columns, half inch (720 twips) spacing. {$filler}")); // Normal $section = $phpWord->addSection(array('breakType' => 'continuous')); $section->addText(htmlspecialchars('Normal paragraph again.')); // Save file echo write($phpWord, basename(__FILE__, '.php'), $writers); if (!CLI) { include_once 'Sample_Footer.php'; }