<?php
include_once( '../../includes/prepend.php' );
$sContent = '<table>' .
'<tr><td>'.$oLang[ 'version' ].' :</td><td>2.0.0</td></tr>' .
'<tr><td>'.$oLang[ 'site_officiel' ].' :</td><td><a href="http://www.phpsimpledb.com" target="_blank">phpsimpledb.com</a></td></tr>' .
'<tr><td>'.$oLang[ 'auteur' ].' :</td><td>Hidalgo Emmanuel</td></tr>' .
'<tr><td>'.$oLang[ 'site_auteur' ].' :</td><td><a href="http://www.hidalgoemmanuel.info" target="_blank">hidalgoemmanuel.info</a></td></tr>' .
'</table>';
$oTemplate->assign( 'body', '<h1>'.$oLang[ 'titre_a_propos' ].'</h1><br/>'.$sContent );
$oTemplate->clear_cache('index.html');
$oTemplate->display('index.html');
?>