index.php 353 B

12345678910111213
  1. <?php
  2. $infos = array(
  3. '<TPL:PRENOM>' => '',
  4. '<TPL:NOM>' => '',
  5. '<TPL:TEL>' => '',
  6. '<TPL:IP4>' => '',
  7. '<TPL:IP6>' => ''
  8. );
  9. $page = str_replace(array_keys($infos), $infos, file_get_contents('../base.html'));
  10. exec('/var/www/adsl/graphs/getGraphs.pl '.strtolower($infos['<TPL:PRENOM>']).' '.strtolower($infos['<TPL:NOM>']));
  11. exit($page);
  12. ?>