le 26/02/2010 à 10:11
mohaalba
Bonjour,
je voudrais récuperer un tableau de ma base de donné, cela est fait mais je n'arrive pas à aligner les colonnes même on fixant la taille de chaque colonne il m'affiche n'importe koi(des taille ke je n'ai pas demandé)
merci d'avance
voila mon code:
je voudrais récuperer un tableau de ma base de donné, cela est fait mais je n'arrive pas à aligner les colonnes même on fixant la taille de chaque colonne il m'affiche n'importe koi(des taille ke je n'ai pas demandé)
merci d'avance
voila mon code:
<?php
session_start();
require_once('config.php');
require_once('fonctions.php');
$titre_page='Gestion des commandes clients';
include_once('haut_color.php');
?>
<div align="center" class="Style1">
<div class="Style2">Mes commandes </div>
</div>
<p> </p>
<p> </p>
<?php
/***/
// Nous affichons notre tableau des commandes
$entete = array('N° Commande','Date commande','Client','Fichier','Q','Etat','Date livraison','Expédition');
echo'<table width="876" height="37" border="1" align="center" bgcolor=#FF0000>
<colgroup>
<col width=140px>
<col width=140px>
<col width=200px>
<col width=200px>
<col width=140px>
<col width=140px>
<col width=140px>
<col width=280px>
</colgroup>
<tr>
<th scope="col">'.$entete[0].'</th>
<th scope="col">'.$entete[1].'</th>
<th scope="col">'.$entete[2].'</th>
<th scope="col">'.$entete[3].'</th>
<th scope="col">'.$entete[4].'</th>
<th scope="col">'.$entete[5].'</th>
<th scope="col">'.$entete[6].'</th>
<th scope="col">'.$entete[7].'</th>
</tr>
</table>';
$result = mysql_query("SELECT ref_com, date_com, client, fichier_com, Q, etat, date_livraison, expedition FROM commandes");
while ($row = mysql_fetch_array($result, MYSQL_NUM)) {
echo'<table width="876" height="37" border="1" align="center" >
<colgroup>
<col width=235px>
<col width=210px>
<col width=270px>
<col width=203px>
<col width=250px>
<col width=100px>
<col width=140px>
<col width=240px>
</colgroup>
<tr>
<th scope="col" >'.$row[0].'</th>
<th scope="col" >'.$row[1].'</th>
<th scope="col" >'.$row[2].'</th>
<th scope="col" >'.$row[3].'</th>
<th scope="col" >'.$row[4].'</th>
<th scope="col" >'.$row[5].'</th>
<th scope="col" >'.$row[6].'</th>
<th scope="col" >'.$row[7].'</th>
</tr>
</table>';
}
?>
<?php
include_once('bas.php');
?>