Pages vues depuis 25/05/2001 : 110 456 657
Index du forum »» Le coin des codeurs »» [Résolu] - image
function ephemblock() {
$result = mysql_query("select content from ephem order by RAND DESC LIMIT 0,1");
list($content) = mysql_fetch_array($result);
$boxstuff = "<br /><br />";
$boxstuff = ($content);
global $block_title;
if ($block_title=="")
$title=("Fiche");
else
$title=$block_title;
themesidebox($title, $boxstuff);
}
#autodoc ephemblock() : Bloc ephemerid <BR>=> syntaxe : function#ephemblock
function ephemblock() {
$result = mysql_query("select content from ephem order by RAND() DESC LIMIT 1");
list($content) = mysql_fetch_array($result);
$boxstuff = "<br /><br />";
$boxstuff = ($content);
global $block_title;
if ($block_title=="")
$title=("Fiche");
else
$title=$block_title;
themesidebox($title, $boxstuff);
}