majdoulin
106Messages postés
16 juillet 2007Date d'inscription
18 févr. 2008 à 10:49
Bonjour desole pour le retard ,
voila j'ai :
<iframe width=200px height=200px MARGINWIDTH=0px MARGINHEIGHT=0px HSPACE=0px VSPACE=0px FRAMEBORDER=0px SCROLLING=yes></iframe>
et je voudrai y afficher un tableau de données, faut il mettre le tableau a l'interieur de l iframe ,ca n'a pas marche et je n'ai aucune idee , merci de m'eclairer :)
<table class="table1" width="535" height="37" border="1" align="center">
<tr>
<td width="35%" bgcolor="#990000"><div align="center"><span class="Style9"><strong>Noms</strong></span></div></td>
<td width="25%" bgcolor="#990000"><div align="center"><span class="Style9"><strong>Prénoms</strong></span></div></td>
<td width="40%" bgcolor="#990000"><div align="center"><span class="Style9"><strong>Catégories</strong></span></div>
<div align="center"></div></td>
</tr>
<?php while($ligne=mysql_fetch_array($rek)){ ?>
<tr>
<td><div align="center">
<?php if(isset($ligne[0]) and isset($ligne[1])){ echo($ligne[0] .' '.$ligne[1]); } ?>
</div></td>
<td><div align="center">
<?php if(isset($ligne[2])){ echo($ligne[2]); } ?>
</div></td>
<td><div align="center">
<?php if(isset($ligne[3])){ echo($ligne[3]); } ?>
</div></td>
</tr>
<?php }}?>
</table>