Login   Register  
PHP Classes
elePHPant
Icontem

File: sample2.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2005-10-13 16:39
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();
?>