rtf_prep.php 400 B

1234567891011121314
  1. <?php
  2. $fields = '';
  3. $str = file_get_contents('../templates/report_' . $_GET["reportname"] . '.tpl');
  4. preg_match_all('/\{\$.*.\}/', $str, $fields);
  5. foreach ($fields as $part){
  6. //$fieldsmod = implode(',',$part);
  7. for ( $i=0;$i<=count($part);$i++ )
  8. {
  9. if ( (strpos($part[$i], 'Txt}') != false) and (strpos($part[$i], 'filter') == false) ) echo $part[$i] . '=' . $part[$i+1] . '<br>';
  10. }
  11. }
  12. ?>