PiaFlalCoOl
NiuAge
ahhhhhhhh ben c'est donc de la que vient le prob. Qu'est ce que je dois mettre ? Qu'est ce que mon forum_id ? le nom de la base de donnée ?
thx
thx
PiaFlalCooL a dit:Suppososns que je vueille mettre une image sur le forum Poub3lle, j'aurai du mettre $forum_id == 48 ou juste 48 ?
Parce que y'a bien un de mes forum qui a pour forum_id le chiffre 1. Donc ça aurait du marcher...
merci de ton aide.
ouvrir index.php
trouver :
$row_color = ( !($i % 2) ) ? $theme['td_color1'] : $theme['td_color2'];
$row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2'];
ajouter après
$backinfo = ($forum_id == 1) ? ' background="./fondbat.gif" style="background-repeat:no-repeat; background-position:right"' : '';
trouver :
'MODERATORS' => $moderator_list,
ajouter après :
'BACKINFO' => $backinfo,
$backinfo = ($forum_id == 1) ? ' background="./fondbat.gif" style="background-repeat:no-repeat; background-position:right"' : '';
Mais il a pas le temps de développer plus, donc si vous pouviez m'aider la dessus.Tu structure ton code ainsi:
Code:
$backinfo = 'background="' . $forum_id . '.gif" style="background-repeat:no-repeat; background-position:right"';
et tu appelles les images en fonction de l'ID de chaque forum.
if(isset($forum_id)){
$backinfo = 'background="' . $forum_id . '.gif" style="background-repeat:no-repeat; background-position:right"';
}
$backinfo = 'background="' . $forum_id . '.gif" style="background-repeat:no-repeat; background-position:right"';
$backinfo = 'background="' . $forum_id . '.gif" style="background-repeat:no-repeat; background-position:right"';