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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
| <div ID="A-RAFRAICHIR-VIA-AJAX" class="testimonial-block">
<p class="happy-custom-say">
<span class="talk-box-icon"></span>
</p>
<div class="testimonial-list">
<div class="testimonial-container">
<blockquote class="testimonial-content">
<div class="quotation-marks-left"></div>
<div id="avis_refresh" class="cnt">
<?php
if ($idavis >5)
{
$idavis = 0;
echo $errorid;
}
if ($idavis <= 0) {
$idavis = 0;
echo $errorid;
}
else
{
echo $row['avis_tuto'];
}
?>
</div>
<div class="quotation-marks-right"></div>
</blockquote>
<cite id="pseudo_refresh" class="testimonial-source">
Posté par <?php
if ($idavis > 5)
{
$idavis = 0;
echo $owner;
}
if ($idavis <= 0) {
$idavis = 0;
echo $owner;
}
else
{
echo '<strong>'.$row['pseudo'].'</strong>';
}
?>
<span class="testimonial-url"></span>
</cite>
</div>
</div>
<div class="read-testimonial">
<div class="testimonial-read-button tertiary-button" readtype="next">
<?php
if ($idavis < 5) {
$next = $idavis + 1;
echo '<a href="?id_avis=' . $next . '" /><span class="label">Suivant</span></a><div class="arrow-right-white-flat"></div></div>';
}
if ($idavis > 1) {
$prev = $idavis - 1;
?>
<div class="testimonial-read-button tertiary-button" readtype="previous">
<?php echo '<a href="?id_avis=' . $prev . ' " /><span class="label">Précédent</span></a><div class="arrow-left-white-flat"></div>';
}
?> |
Partager