[TYPO3-german] rtf > html mittels rtfclass.php

Martin Holtz typo3 at martinholtz.de
Sun Aug 19 17:35:47 CEST 2007


Hallo Manfred,

> <?php
> include(' fileadmin/template/wfqbe/rtfclass.php');
>              $t = new rtf ('###FIELD_TESTIMONY###')
Hier fehlt ein ";" am Ende. -> Parser Fehler

>              $r = new rtf( $t);
>              $r->output("html");
>      $r->parse();
> if( count( $r->err) == 0) // no errors detected
> echo $r->out;
Diese Syntax ist auch fehleranfällig, schreib doch

if( count( $r->err) == 0) { // no errors detected
   echo $r->out;
}

> ?>
> 
> Erteilt nur die Fehlermeldung:
> 
> Parse error: syntax error, unexpected T_VARIABLE in
> /home/gideons/public_html/new/typo3conf/ext/page_php_content/pi1/class.tx_pagephpcontent_pi1.php(55)
> : eval()'d code on line 5
> 
> Bin für jede Hilfe echt dankbar.
wars ne Hilfe?

gruß,
martin


More information about the TYPO3-german mailing list