Zinnsoldat08468: Fckeditor schreibt alles in html statt "Normal"

Beitrag lesen

<?php

if ( isset( $_POST ) )
   $postArray = &$_POST ;   // 4.1.0 or later, use $_POST
else
   $postArray = &$HTTP_POST_VARS ; // prior to 4.1.0, use HTTP_POST_VARS

foreach ( $postArray as $sForm => $value )
{
 if ( get_magic_quotes_gpc() )
  string htmlspecialchars  ( string $string  [, int $quote_style  [, string $charset  [, bool $double_encode  ]]] ) ;
 else
  string htmlspecialchars  ( string $string  [, int $quote_style  [, string $charset  [, bool $double_encode  ]]] ) ;

?>
   <tr>
    <th><?php echo $sForm?></th>
    <td><pre><?php echo $postedValue?></pre></td>
   </tr>
<?php
}
?>

Das ist die Index.php, also die datei wo er das bearbeitete Darstellen soll.
Wenn ich die Aufrufe bekomme ich

"Parse error: syntax error, unexpected T_STRING in /var/www/***/index.php on line 95"
Was habe ich falsch gemacht?
Bin leider noch nicht so bewandert in Php.
Schonmal danke für alle Antworten