12345678910111213 |
- <?php
- $infos = array(
- '<TPL:PRENOM>' => '',
- '<TPL:NOM>' => '',
- '<TPL:TEL>' => '',
- '<TPL:IP4>' => '',
- '<TPL:IP6>' => ''
- );
- $page = str_replace(array_keys($infos), $infos, file_get_contents('../base.html'));
- exec('/var/www/adsl/graphs/getGraphs.pl '.strtolower($infos['<TPL:PRENOM>']).' '.strtolower($infos['<TPL:NOM>']));
- exit($page);
- ?>
|