example

  1. <?php
  2.  
  3. /**
  4.  * Inserts a simple table into the Word document.
  5.  *
  6.  * @category   Phpdocx
  7.  * @package    examples
  8.  * @subpackage easy
  9.  * @copyright  Copyright (c) Narcea Producciones Multimedia S.L.
  10.  *              (http://www.2mdc.com)
  11.  * @license    http://www.phpdocx.com/wp-content/themes/lightword/pro_license.php
  12.  * @version    3.0
  13.  * @link       http://www.phpdocx.com
  14.  * @since      File available since Release 3.0
  15.  */
  16. require_once '../../classes/CreateDocx.inc';
  17.  
  18. $docx new CreateDocx();
  19.  
  20. $valuesTable array(
  21.     array(
  22.         11,
  23.         12
  24.     ),
  25.     array(
  26.         21,
  27.         22
  28.     ),
  29. );
  30.  
  31. $paramsTable array(
  32.     'border' => 'single',
  33.     'border_sz' => 20
  34. );
  35.  
  36.  
  37. $docx->addTable($valuesTable$paramsTable);
  38.  
  39. $docx->createDocx('../docx/example_table');

Documentation generated on Tue, 21 May 2013 17:19:47 +0200 by phpDocumentor 1.4.4