1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| if($fin+3 >= time()){
$_SESSION['verif'] = false;
}
else{
$_SESSION['verif'] = true;
}
if($_SESSION['verif'] == true){
?>
<div id="verif" style="height:24px;background:url(http://www.bid-good.com/new/images/global/encheres_66.jpg);color:#000;width:114px;margin-left:auto;margin-right:auto;padding-top:8px;font-weight:bold;margin-left:10px;font-size:15px;font-family:verdana;">
Vérification
</div>
<?php
}
else{
?>
<div id="vendu" style="height:24px;background:url(http://www.bid-good.com/new/images/global/encheres_66.jpg);color:#000;width:114px;margin-left:auto;margin-right:auto;padding-top:8px;font-weight:bold;margin-left:10px;font-size:15px;font-family:verdana;">
VENDU
</div>
<?php
}
?> |