bonjour,
j'appelle un page php contenant des infos extraite d'une base dans une balise div
jusque la tout fonctionne très bien
mais afin d'embellir un peut la page j'ai voulu ajouter une image gif
mais elle ne s'affiche pas
pourtant quand je teste en affichant juste la page concerné dans mon localhost cela fonctionne très bien
voici le code de la page en kestion
ce code est appelé par un include dans la page précédente
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65 <?php /* on récupère les données concernant le PAS choisi */ $ReqSelec1="Select * from pas where id_pas=$id order by titre_pas"; $ReqSelec2="Select titre_GpAS, description_GpAS from groupeas where id_pas=$id order by titre_gpas"; $Res1=mysql_query($ReqSelec1); $ligne1=mysql_fetch_array($Res1); $Nb2=mysql_num_rows(mysql_query($ReqSelec2)); ?> <style type="text/css"> #theme{ background-color:#FFFFFF; height:467px; width:800px; } p.SSTitre{ font-size:1.5em; text-align:left; font-family:"palatino linotype"; background-color:#FFFFFF; color: #003366; } p.Partie{ font-size: 1.5em; text-align:left; font-family:"palatino linotype"; background-color:#FFFFFF; color: #003366; font-weight: bold; } </style> <p class="SSTitre">Descriptif du plan d'action : <?php echo $ligne1[1]; ?></p> <table> <tr> <td><img src="test.gif"></td> </tr> </table> <table> <tr> <td style="font-weight:bold;">Description : </td> <td><?php echo $ligne1[2]; ?></td> </tr> <tr> <td style="font-weight:bold;">Responsable : </td> <td><?php echo $ligne1[3]; ?></td> </tr> </table> <br> <?php if ($Nb2>0) { echo "<strong>Liste des groupes d'action :</strong> \n <table border='1' width='100%'>"; if ($Res2=mysql_query($ReqSelec2)) { echo "<tr width=100% style='font-weight:bold;'><td width=40%>Titre</td><td width=60%>Description</td></tr>"; while($ligne2=mysql_fetch_row($Res2)){ $titre=$ligne2[0]; $desc=$ligne2[1]; echo "<tr><td>".$titre."</td><td>".$desc."</td></tr>\n"; } } } ?> </table> <br>
Partager