Bonjour à tous,
Je viens vers vous car je dois avoir un problème de syntaxe.
En fait, j'ai un formulaire avec des filtre et également le script php avec 3 boucles pour remplir un tableau.
Mon plantage arrive au niveau de l'affichage du tableau :
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 $t = '<br> <p style="width:100px;"></p> <p style="width:100px;">Nom : </p> <p style="width:200px;" ><strong><a href="index.php?page=nageurs&id='.$ligne['idNageur'].'">'.strtoupper($ligne['nom']).' '.$ligne['prenom'].'</a></strong></p> <br> <p style="width:100px;"></p> <p style="width:100px;background-color : #a0a0a0">Date : </p> <p style="width:200px;background-color : #a0a0a0">'.$dateCompetition.'</p> <br> <p style="width:100px;"></p> <p style="width:100px;">Temps : </p> <p style="width:200px;">'.$temps.'</p> <br> <p style="width:100px;"></p> <p style="width:100px;background-color : #a0a0a0">Evenement : </p> <p style="width:200px;background-color : #a0a0a0">'.$nomCompetition.'</p> <br> <p style="width:100px;"></p> <p style="width:100px;">Piscine : </p> <p style="width:200px;">'.$piscine.'</p> <br> <p style="width:100px;"></p> <p style="width:100px;background-color : #a0a0a0">Lieu : </p> <p style="width:200px;background-color : #a0a0a0">'.$lieu.'</p> <br>' echo $t;
est-ce donc un problème de syntaxe html ou mon problème vient d'autre part ??
Merci d'avance
Nico
Partager