[PHP&HTML] Mise en page requête

Résolu/Fermé
Imer - 21 juin 2005 à 14:16
alexlink Messages postés 398 Date d'inscription jeudi 30 septembre 2004 Statut Membre Dernière intervention 24 juin 2008 - 21 juin 2005 à 16:54
Salut à tous,
je voudrais mettre en forme le résultat de mes requête dans un tableau... Je voudrais un tableau sous la forme :
titre1 titre2 titre3 titre4
PHP PHP PHP PHP

Je vous donne mon code ca pourra peut-être vous aider..
<table width="672" border="1" cellpadding="1" cellspacing="0" bordercolor="#000000">
      <tr>
        <th width="178" rowspan="2" scope="row">CARACTERISTIQUES</th>
        <th width="106" rowspan="2">UNITE</th>
        <th colspan="2">REFERENCE NORME </th>
        <th width="168" rowspan="2">SPECIFICATION</th>
      </tr>
      <tr>
        <th width="95">AFNOR</th>
        <th width="103">ISO</th>
        </tr>
      <tr>
        <td scope="row"><?
while ($val = mssql_fetch_array($gamme)){
$a = $val['nml_variable'];
echo $a."</br>";
}
$unite = mssql_query("SELECT unite, afnor, iso FROM variable_bis WHERE variable_bis.nml IN (SELECT nml_variable FROM variable_affiche)");
?></td>
        <td><?
while ($val2 = mssql_fetch_array($unite))
{
echo $val2['unite']."</br>";
} ?></td><td><?
while ($val2 = mssql_fetch_array($unite))
{
echo $val2['afnor']."</br>";
}
?></td><td><?
while ($val2 = mssql_fetch_array($unite))
{
echo $val2['iso']."</br>";
}
?></td></tr></table>


Mon code php ne s'affiche pas entièrement comme ca, j'ai fais de test mais j'arrive pas à ce que je veux...
Merci d'avance...
A voir également:

1 réponse

alexlink Messages postés 398 Date d'inscription jeudi 30 septembre 2004 Statut Membre Dernière intervention 24 juin 2008 42
21 juin 2005 à 16:54
Et comment cela s'affiche-t-il ?
0