Brèves

Edito

'; $str .= dispHomeEdito(); $str .= '

Dernières vidéo

'; $str .= dispHomeLastVideos(); $str .='

Dernières photos

'; $str .= dispHomeLastPhotos(); $str .='
 
'; echo $str; } function dispHomeNews(){ $str = ''; if ($_SESSION["user_right"] >= $GLOBALS["PRIV_GUEST"] ) { $result = getLastNews(2); } else if ($_SESSION["user_right"] >= $GLOBALS["GUEST"] ) { $result = getLastNews(1); } else { $result = getLastNews(0); } if (mysql_num_rows($result)){ while ($news = mysql_fetch_array($result)) { // DISP NEWS TITLE BY TENDU $str .= dispWhenTendu($news["news_tendu"]); $str .= '
  • '.$news["news_title"].' '; // DISP NEWS CONTENT BY TENDU $str .= dispWhenTendu($news["news_tendu"]); $str .= ' - '.$news["news_date"].'

    '.$news["news_comment"].'



  • '; } } return ($str); } function dispHomeEdito(){ $result = getLastEdito(); if (mysql_num_rows($result)){ $edito = mysql_fetch_array($result); } $str = ' '; return ($str); } function dispHomeLastVideos(){ if ($_SESSION["user_right"] >= $GLOBALS["PRIV_GUEST"] ) { $result = getLastVideosByTendu(2); } else if ($_SESSION["user_right"] >= $GLOBALS["GUEST"] ) { $result = getLastVideosByTendu(1); } else { $result = getLastVideosByTendu(0); } $str = ''; } $str .= ' '; return ($str); } function dispHomeLastPhotos(){ if ($_SESSION["user_right"] >= $GLOBALS["PRIV_GUEST"] ) { $result = getLastPhotosByTendu(2); } else if ($_SESSION["user_right"] >= $GLOBALS["GUEST"] ) { $result = getLastPhotosByTendu(1); } else { $result = getLastPhotosByTendu(0); } $str = ''; } $str .= ' '; return ($str); } ?>