Salut,
mes titres sont répétés alors que mes "echo" sont dans les balises <tr><td> donc pas dans le titre. une solution ?
le bout de code:
j'ai déjà réussi cette requête mais je ne trouve plus le script, merci pour votre aide
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46 <?php $req = $bdd->query('SELECT * FROM annonce') or die(print_r($bdd->errorInfo())); // $req->execute(array('id'=>10)); while($data = $req->fetch()){ ?> <div id="demo"> <table cellspacing="1" class="tablesorter"> <thead> <tr> <th>Ref.</th> <th>Date de creation</th> <th>Type de transaction</th> <th>CP</th> <th>Ville</th> <th>Prix</th> <th>Nb pieces</th> <th>Surface</th> <th>Visuel</th> </tr> </thead> <tbody> <?php echo "<tr>"; echo "<td>".$data['reference']."</td>"; echo "<td>".$data['libelle']."</td>"; echo "<td>".$data['prix']."</td>"; echo "<td>".$data['honoraire']."</td>"; echo "<td>".$data['nombrepcs']."</td>"; echo "<td>".$data['nombrechambre']."</td>"; echo "<td>".$data['soustype']."</td>"; echo "<td>".$data['exclusivite']."</td>"; echo "<td>".$data['descriptif']."</td>"; echo "<td>".$data['recent']."</td>"; echo "<td>".$data['refait']."</td>"; echo "</tr>"; }?> </tbody> </table> </div> <?php $req->closeCursor(); ?>
Partager