<tr><td class=contentb> <table border="0" width="100%"><tr> <td width="35%" >System: <font size=2 color=#ff4500><b><?php echo getsystem(); ?> </b></font></td> <td width="15%" >PHP-version: <font size=2 color=#29a329><?php echo phpversion(); ?> </font></td> <td width="15%" >Oracle: <?php echo oracle(); ?> </td> <td width="25%" >Safe_mode: <?php echo safe_mode(); ?> </td> </tr> <tr> <td width="35%" >Server: <font size=2 color=#ff4500><b><?php echo getserver(); ?> </b></font></td> <td width="15%" >MySQL: <?php echo testmysql(); ?> </td> <td width="15%" >cURL: <?php echo testcurl(); ?>
function tableau_limitations_PHP() { global $tab_commentaires; return' <table class="p"> <thead> <tr><th colspan="2">Réglage des limitations PHP</th></tr> </thead> <tbody> <tr><td><img alt="" title="'.$tab_commentaires['max_execution_time'].'" src="./_img/bulle_aide.png" /> max execution time</td><td class="hc">'.max_execution_time().'</td></tr> <tr><td><img alt="" title="'.$tab_commentaires['memory_limit'].'" src="./_img/bulle_aide.png" /> memory limit</td><td class="hc">'.memory_limit().'</td></tr> <tr><td><img alt="" title="'.$tab_commentaires['post_max_size'].'" src="./_img/bulle_aide.png" /> post max size</td><td class="hc">'.post_max_size().'</td></tr> <tr><td><img alt="" title="'.$tab_commentaires['upload_max_filesize'].'" src="./_img/bulle_aide.png" /> upload max filesize</td><td class="hc">'.upload_max_filesize().'</td></tr> <tr><td><img alt="" title="'.$tab_commentaires['safe_mode'].'" src="./_img/bulle_aide.png" /> safe_mode</td>'.safe_mode().'</tr> <tr><td><img alt="" title="'.$tab_commentaires['open_basedir'].'" src="./_img/bulle_aide.png" /> open_basedir</td>'.open_basedir().'</tr> <tr><td><img alt="" title="'.$tab_commentaires['ini_set_memory_limit'].'" src="./_img/bulle_aide.png" /> ini_set(memory_limit)</td>'.ini_set_memory_limit().'</tr> </tbody> </table> '; }