1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
print("<center>");
print("<TABLE border=\"1\" height=\"80%\" bgcolor=\"717171\">");
//print("<caption><em>Voici le tableau que vous demandez:</em></caption>");
print("<tr><th>client</th><th>nom_prof</th><th>pren_prof</th><th>duree1</th><th>duree2</th><th>duree3</th></tr>");
while($row=mysql_fetch_array($requete_final4))
{
print("<tr>");
print("<td>".$row['client']."</td><td>".$row['nom_prof']."</td><td>".$row['pren_prof']."</td><td>".$row['duree1']."</td>
<td>".$row['duree2']."</td><td>".$row['duree3']."</td><BR>\n");
print("</tr>");
}
print("</TABLE>");
print("</center>"); |