rtf_detail.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. require_once "../auth.php";
  3. require_once "../init.php";
  4. $pairs = array(
  5. 'äää' => 'ae',
  6. 'öää' => 'oe',
  7. 'üää' => 'ue',
  8. 'ßää' => 'ss',
  9. '€ää' => ' Euro'
  10. );
  11. /* Function to extract headline...
  12. * First the actual php-file is opened, then it is parsed and searched for $reportName=title.
  13. * The title will be extracted.
  14. * This title is used to perform a Database SELECT on qb_report.
  15. * The column readonly contains the reports column names. unified with the column hidden,
  16. * the output will be the actual column names, that just need to be translated using __().
  17. */
  18. $part = substr($_GET['report'], strpos($_GET['report'], "/")+1);
  19. $strDoc = '';
  20. $strDoc = file_get_contents('..' . substr($part, strpos($part, "/")));
  21. $match = substr($strDoc, strpos($strDoc, 'reportName')+14);
  22. $match = substr($match, 0, strpos($match, ';')-1);
  23. //echo $match; //--> $match now contains the report's name
  24. //print_r($_GET);
  25. echo $match;
  26. $doc = file_get_contents('Detail_' . $match . '_vorl.rtf');
  27. //echo 'Detail_' . $match . '_vorl.rtf';
  28. $doc = preg_replace('/\<titel\>/i', $match, $doc);
  29. foreach ( $_GET as $getvar => $getvarval)
  30. {
  31. //$$getvar = $getvarval;
  32. //print $getvar . ':' . $getvarval . '------------------' . '@' . $getvar . '@' . '<br>';
  33. $doc = preg_replace('/\<' . $getvar . '\>/i', $getvarval, $doc);
  34. }
  35. $fd = fopen('Detail.rtf', 'w+');
  36. rewind($fd);
  37. fwrite($fd, $doc);
  38. fclose($fd);
  39. echo '
  40. <html>
  41. <head>
  42. <title></title>
  43. <meta http-equiv="refresh" content="0; URL=Detail.rtf">
  44. </head>
  45. <body>
  46. </body>
  47. </html>';
  48. ?>