2004/1/16 15:43
Xtracted
Not too shy to talk
Posts: 138
Since: 2004/1/7 2
2004/1/16 15:51
Mithrandir
XOOPS is my life!
Posts: 6320
Since: 2003/6/21
2004/1/16 15:55
2004/1/16 15:56
2004/1/16 17:03
2004/1/16 17:09
2004/1/16 17:14
2004/1/16 17:19
2004/1/16 17:24
2004/1/16 18:40
shino
Theme Designer
Posts: 23
Since: 2003/7/16
<?php // $Id: index.php,v 1.2 2003/01/25 22:52:08 Onokazu Exp $ // ------------------------------------------------------------------------ // // XOOPS - PHP Content Management System // // Copyright (c) 2000 XOOPS.org // // <https://xoops.org/> // // ------------------------------------------------------------------------- // // This program is free software; you can redistribute it and/or modify // // it under the terms of the GNU General Public License as published by // // the Free Software Foundation; either version 2 of the License, or // // (at your option) any later version. // // // // You may not change or alter any portion of this comment or credits // // of supporting developers from this source code or any supporting // // source code which is considered copyrighted (c) material of the // // original comment or credit authors. // // // // This program is distributed in the hope that it will be useful, // // but WITHOUT ANY WARRANTY; without even the implied warranty of // // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // // GNU General Public License for more details. // // // // You should have received a copy of the GNU General Public License // // along with this program; if not, write to the Free Software // // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // ------------------------------------------------------------------------ // include "../../mainfile.php"; include "../../header.php"; $db =& Database::getInstance(); OpenTable(); echo "<br><h4 style='text-align:center;'>Les Grades</h4><br><center>Ces grades sont détérminés en fonction du nombre de posts sur le forum <br>et de commentaires sur chaque partie du site.</center><br> <table width='100%' class='head' cellpadding='4' cellspacing='1'> <tr align='center'> <td><font color=#666666>Rang</font></td> <td><font color=#666666>Nombre de posts minv</td> <td><font color=#666666>Nombre de posts max</font></td> <td><font color=#666666>Image</font></td></tr>"; $result = $db->query("SELECT * FROM ".$db->prefix("ranks")." where rank_special=0 ORDER BY rank_id"); $count = 0; while ( $rank = $db->fetchArray($result) ) { if ($count % 2 == 0) { $class = 'odd'; } else { $class = 'even'; } echo "<tr class='$class' align='center'> <td>".$rank['rank_title']."</td> <td>".$rank['rank_min']."</td> <td>".$rank['rank_max']."</td> <td>"; if ( $rank['rank_image'] ) { echo '<img src="'.XOOPS_URL.'/uploads/'.$rank['rank_image'].'" alt="" /></td>'; } else { echo ' '; } echo"</tr>"; $count++; } echo '</table><br /><br />'; CloseTable(); include_once XOOPS_ROOT_PATH."/footer.php"; ?>
Advanced Search