You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
429 B
PHP

<?php
errorlog('readrtf startet');
errorlog('include rtfparser.php');
include "rtf/rtfparser.php";
$classname = 'rtfcol'; // erstes file in einem dokument bekommt cf0
$filename = $_GET['rtfverz'].$_GET['rtffile'];
errorlog('Filename:'.$filename);
if (file_exists($filename) && !is_dir($filename)){
echo(rtf_parsefile($filename,$classname));
}else{
echo('File not Found');
errorlog('Falscher Filename !!!');
}
?>