Bonsoir à tous,
je connais très peu en php sinon que dreamwever cs4 me donne un bon coup de main.
Mon problème: en liaison avec ma base de donnée, je souhaite que la couleur du mot bonjour change de couleur si c'est bonjour en rouge si c'est bonsoir en bleu.
Salutations
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<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>test</title> <style> rouge{ color:#F00 } vert{ color:#3F0 } </style> </head> <body> <p> </p> <table width="654" border="1" align="center" cellpadding="0" cellspacing="0"> <tr> <td align="center"> </td> <td align="center">1</td> <td align="center">2</td> </tr> <tr> <td width="188" align="center">A</td> <td width="188" align="center">Bonjour</td> <td width="270" align="center">123</td> </tr> <tr> <td align="center">B</td> <td align="center"><?php echo $row_truc['retour_db']; ?></td> <td align="center">autre</td> </tr> <tr> <td align="center">C</td> <td align="center">Héllo</td> <td align="center">nul</td> </tr> </table> </body> </html>
Partager