File "gazette.php"
Full Path: /home/asmplong/www/asm/images/gazette.php
File size: 941 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
include ('inc.top.php');
$req_recup_gazette = mysql_query("SELECT * FROM ".$db_prefixe."gazette ORDER BY gazette_date DESC");
echo "<h1>Les Bulles de l'ASM</h1>";
while($data_recup_gazette = mysql_fetch_array($req_recup_gazette))
{
echo '<div style="overflow:auto; margin:10px; border-bottom:2px solid #fff;">
<span style="float:left; display:block; padding:15px 7px; margin:7px 10px 0 0; font-weight:bold; background:#e51427; color:#fff; border-radius:5px;">PDF</span>
<h2><a href="gazette/'.$data_recup_gazette['gazette_fichier'].'" target="_blank" title="" style="text-decoration:none; font-weight:bold;">'.stripslashes($data_recup_gazette['gazette_titre']).'</a></h2>
<p style="font-size:11px;">Gazette parue le '.changedateusfr($data_recup_gazette['gazette_date']).'</p>
</div>';
}
include ('inc.foot.php');
?>