Pages vues depuis 25/05/2001 : 104 311 083
Index du forum »» Pour débuter »» Erreurs pour le bloc de droite d'une page
Warning: mysql_query(): Access denied for user 'www-data'@'localhost' (using password: NO) in /home/httpd/vhosts/GestInfo.fr/httpdocs/mainfile.php on line 1036
Warning: mysql_query(): A link to the server could not be established in /home/httpd/vhosts/GestInfo.fr/httpdocs/mainfile.php on line 1036
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/httpd/vhosts/GestInfo.fr/httpdocs/mainfile.php on line 1041
Warning: mysql_free_result(): supplied argument is not a valid MySQL result resource in /home/httpd/vhosts/GestInfo.fr/httpdocs/mainfile.php on line 1045
1026 #autodoc Pre_fab_block($Xid, $Xblock) : Assure la fabrication d'un ou de tous les blocs Gauche et Droite
1027 function Pre_fab_block($Xid, $Xblock) {
1028 if ($Xid) {
1029 if ($Xblock=="RB") {
1030 $result = mysql_query("select title, content, member, cache, actif from rblocks where id='$Xid'");
1031 } else {
1032 $result = mysql_query("select title, content, member, cache, actif from lblocks where id='$Xid'");
1033 }
1034 } else {
1035 if ($Xblock=="RB") {
1036 $result = mysql_query("select title, content, member, cache, actif from rblocks order by Rindex ASC");
1037 } else {
1038 $result = mysql_query("select title, content, member, cache, actif from lblocks order by Lindex ASC");
1039 }
1040 }
1041 while (list($title, $content, $member, $cache, $actif) = mysql_fetch_array($result)) {
1042 if (($actif) or ($Xid))
1043 fab_block($title, $member, $content, $cache);
1044 }
1045 mysql_free_result($result);
1046 }