PHP Classes

File: sample2.php

Recommend this page to a friend!
  Classes of Max S. Ferreira   MsDoc Generator   sample2.php   Download  
File: sample2.php
Role: Example script
Content type: text/plain
Description: sample with session changing
Class: MsDoc Generator
Create Microsoft Word document without COM objects
Author: By
Last change:
Date: 19 years ago
Size: 1,100 bytes
 

Contents

Class file image Download
<?php
   
require_once('clsMsDocGenerator.php');
       
   
$doc = new clsMsDocGenerator();
   
$doc->addParagraph('this is the first paragraph, this is the first paragraph, this is the first paragraph, this is the first paragraph, this is the first paragraph, this is the first paragraph, this is the first paragraph.');
   
$doc->addParagraph('this is the this is the second paragraph, this is the second paragraph, this is the second paragraph, this is the second paragraph, in justified style,', array('text-align' => '"justify"', 'color' => 'red'));
   
   
$doc->newPage();
   
$doc->addParagraph('this is the this is the second paragraph, this is the second paragraph, this is', array('text-align' => '"right"', 'color' => 'green'));

   
$doc->newSession('LANDSCAPE');
   
$doc->addParagraph('this is the this is the second paragraph, this is the second paragraph, this is', array('text-align' => '"left"', 'color' => 'blue'));
   
   
$doc->newSession();
   
$doc->addParagraph('this is the this is the second paragraph, this is the second paragraph, this is', array('color' => '#FFFF00'));
   
   
$doc->output();
?>