fhiiqm/test/test_pdf.php
changeset 32 c2d325791e24
equal deleted inserted replaced
31:0a1eb975fbd9 32:c2d325791e24
       
     1 <?php
       
     2 
       
     3 /**
       
     4  * @author Bettina Schwarzer, Fritz-Haber-Institut
       
     5  * @copyright 10/2012
       
     6  * 
       
     7  * TEST pdf
       
     8  */
       
     9 
       
    10 echo "pdf erstellen m&ouml;glich?";
       
    11 try
       
    12 {   $p = new PDFlib;
       
    13     echo "<br /> Ja!"; 
       
    14 } 
       
    15 catch (Exception $e)
       
    16 { echo "<br /> Nein! " . $e->getMessage();}
       
    17 //[Fri Oct 26 15:29:38 2012] [error] [client 141.14.133.204] PHP Fatal error:  Class 'PDFlib' not found in /var/www/fhiiqm/test/test_pdf.php on line 11
       
    18 
       
    19 ?>