Hello,
I want to make a new design for my website and want to use accordeon.
it's work well, but my page is linked to a sql database and if I can see the result without problem the links don't work.
don't know why, who have an idea?
thanks
you can see the test there:
the code:
<h3><a href="#">Jeux</a></h3>
<div>
<?php do { ?>
<table>
<tr bgcolor="<?php
if ($SSAdv_m1%$SSAdv_change_every1==0 && $SSAdv_m1>0){
$SSAdv_k1++;
}
print $SSAdv_colors1[$SSAdv_k1%count($SSAdv_colors1)];
$SSAdv_m1++;
?>">
<td class="result_sport"><a href="<?php echo $row_RsJeux['Lien']; ?>">
<? if ($row_RsJeux['Prevu']==1) echo "<em>"; ?>
<?php echo $row_RsJeux['Annee']; ?> <?php echo $row_RsJeux['Lieu']; ?> (<?php echo $row_RsJeux['Code']; ?>)
<? if ($row_RsJeux['Prevu']==1) echo "</em>"; ?>
</a>
</td>
</tr>
</table>
<?php } while ($row_RsJeux = mysql_fetch_assoc($RsJeux)); ?>
</div>