Voici ce que donne les bordures de ma page WEB ... C'est pour arrondir un cadre via des images GIF. Mais là, ca peche car il ne colle pas totalement le haut de mon cadre Pourquoi ?
Voici mon code HTML - PHP
MERCI.
Code php : 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 <? //Fichier de configuration require ("cnx/login_sql.php"); //Connexion à la base de données $db = mysql_connect($cnxhost, $cnxuser, $cnxpass) or die ("Erreur de connexion"); //Connexion à la table Users mysql_select_db($cnxbase,$db); echo '<table border="0" width="100%" align="center">'; echo '<tr>'; echo '<td align="left"><img src="image/bord_gauche.gif"></td>'; echo '<td></td>'; echo '<td align="right"><img src="image/bord_droit.gif"></td>'; echo '</tr>'; echo '</table>'; Echo ' <img src="image\ah.png" vspace="15" hspace="25">'; Echo ' <img src="http://as-cedese.as.asd.asf\Alliance\image\logo3.bmp" vspace="25">'; //include("users_cnx.php"); Echo ' <div align="right"> <table> <td bgcolor="#006699" width="30%" align="right"> <a href="index.php?numlien=acceuil"><img src="http://as-cedese.as.asd.asf\Alliance\image\fleche.jpg" width="20" border="0"></a></td> <td align="left"> <center><font color="#FFFFFF" size=1">Accueil</font></center> </td> <td bgcolor="#006699" width="30%" align="right"> <a href="index.php?numlien=Contact"><img src="http://as-cedese.as.asd.asf\Alliance\image\fleche.jpg" width="20" border="0"></a></td> <td align="left"> <center><font color="#FFFFFF" size=1">Contact</font></center> </td> </table> </div>'; ?>
Partager