oim 1453
| Posté : 28-09-2004 17:31
En fait j'ai trouvé une façon plus simple, utiliser l'ephemeride par contre il faudrait changer la fonction pour afficher par jour par aléatoire :
function ephemblock() {
global $gmt;
$eday=date("d",time()+($gmt*3600));
$emonth =date("m",time()+($gmt*3600));
$result = mysql_query("select yid, content from ephem where did='$eday' AND mid='$emonth' order by yid ASC");
while (list($yid, $content) = mysql_fetch_array($result)) {
if ($cnt==1)
$boxstuff .= "<br /><br />";
$boxstuff .= aff_langue($content);
$cnt = 1;
}
|