Essaye de mettre l'attribut style dans la balise <table>
Mais sans grande conviction !!!
Tu utilise quel browser ?
<div align="center" style="overflow:auto "><b><u>Downtime</u></b>
<br><br><br>
<table border="1">
<tr>
<td></td>
<td><b>Jour</b></td>
<td><b>Mois</b></td>
<td><b>Annee</b></td>
<td><b>Heure</b></td>
<td><b>Type</b></td>
<td><b>Downtime in SLA</b></td>
<td><b>Total Downtime</b></td>
<td><b>Description</b></td>
<td><b>Action</b></td>
<td><b>Owner</b></td>
</tr>
<?php
require_once('../Connections/arnis01.php');
mysql_select_db("arnis01");
$annee=$_POST["annee"];
$str_requete ="SELECT jour, mois, annee, heure, type, sla, total, description, action, owner FROM sla WHERE annee=".$annee." ORDER BY annee, mois, jour";
$o_result = mysql_query($str_requete);
while ($a_result = mysql_fetch_array($o_result, MYSQL_ASSOC)) {
$tabMois = array ('01'=>'Janvier', '02'=>'Février', '03'=>'Mars', '04'=>'Avril', '05'=>'Mai', '06'=>'Juin', '07'=>'Juillet', '08'=>'Août', '09'=>'Septembre',
'10'=>'Octobre', '11'=>'Novembre', 12=>'Décembre');
$mois = $tabMois[$a_result["mois"]];
?>
<form action="downtime3.php" method="post">
<?php
echo "<tr>";
echo "<td><input type='checkbox' name='temp[]' value='".$a_result["jour"].$a_result["mois"].$a_result["annee"]."'></td>";
echo "<td>".$a_result["jour"]."</td>";
echo "<td>".$mois."</td>";
echo "<td>".$a_result["annee"]."</td>";
echo "<td>".$a_result["heure"]."</td>";
echo "<td>".$a_result["type"]."</td>";
echo "<td>".$a_result["sla"]."</td>";
echo "<td>".$a_result["total"]."</td>";
echo "<td>".$a_result["description"]."</td>";
echo "<td>".$a_result["action"]."</td>";
echo "<td>".$a_result["owner"]."</td>";
echo "</tr>";
}
?>
</table>
<input type="submit" name="Submit" value="Supprimer" /></form>
</div>