Bsr Mr. White
Voici un ex qui fonctionne sous IE , NS 4.7 et NS 6
<html>
<head>
<style>
.fond
{
background-image:url("mon_image.jpg");
background-repeat:no-repeat;
}
</style>
</head>
<body>
<table border=1>
<tr >
<td height=50 width=100 style="background-image:url('mon_image.jpg');background-repeat:no-repeat;">CELLULE</td>
</tr>
</table>
<table border=1>
<tr >
<td height=50 width=100 class="fond">CELLULE</td>
</tr>
</table>
</body>
</html>
Tu peux soit mettre le code au niveau de la balise <TD>,
soit utiliser un style et y faire référence via class=nom_style (méthode que je préfère car tout est centralisé)
En PHP tu peux faire :
...
<style>
.fond
{
background-image:url("<?php echo $image;?>");
background-repeat:no-repeat;
}
</style>
...
PhP [Push the button,Don't push the
. button,Trip the station,Change the channel]