PV.Pat File Manager
Kernel Version: Linux webm010.cluster127.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Domains: CANT READ named.confSites Server IP: 10.127.20.10 [Bing Search] [Zone-H]
| Path : /home/sptporgazz/www/_inc/ |
| Current File : /home/sptporgazz/www/_inc/fil_actualites.php |
<?php
$sql_actus = "SELECT * FROM actualites ORDER BY position ASC";
$res_actus = mysql_query($sql_actus) or die(mysql_error());
while($row_actus = mysql_fetch_array($res_actus)) {
$id_actu = $row_actus['id_actu'];
$titre_actu = $row_actus['titre'];
$sous_titre_actu = $row_actus['sous_titre'];
$date_actu = $row_actus['date'];
$auteur_actu = $row_actus['auteur'];
$texte_actu = $row_actus['texte'];
?>
<div class="une_actu" onclick="location.href='actualites.php?id=<?echo $id_actu;?>';">
<div class="une_actu_ligne1"><span class="titre_actu">>> <a href="actualites.php?id=<?echo $id_actu;?>"><?echo $titre_actu;?></span><?if($auteur_actu!="") {?><span class="separ_actu">/</span><span class="auteur_actu"><?echo $auteur_actu;?></span><?}?></a></div>
<div class="une_actu_ligne2"><?echo $date_actu;?></div>
</div>
<?
}
?>