umm i need other .....

Results 1 to 1 of 1
  1. #1
    Mocro.net Mocro is offline
    MemberRank
    Feb 2008 Join Date
    Amsterdam.Location
    891Posts

    umm i need other .....

    i need other hiscore the hiscore i use now is designed on exp i want a hiscore for death and kill how i change it its now :

    Code:
    <?php include("config.php");?>
    <link rel="stylesheet" type="text/css" href="style.css"> 
    <?php 
    $query = mssql_query("SELECT TOP 10 * FROM Character order by xP Desc");
    
    
    ?>
    <style type="text/css">
    <!--
    .style28 {font-size: 10px}
    .style29 {color: #000000; font-weight: ; font-size: 10px; }
    .style1 {    font-size: 10px;
        font-weight: ;
    }
    -->
    </style>
    <table width="250" border="0">
      <tr >
        <th colspan="0" scope="row"><span class="style28">Top Player List </span></th>
      </tr>
      <tr>
        <th width="24" scope="row"><span class="style28"><strong>#</strong></span></th>
        <td width="24"><span class="style28"><strong>Name</strong></span></td>
        <td width="23"><span class="style28"><strong>Level</strong></span></td>
    
      </tr>
      <?php 
     for($i=0;$i < mssql_num_rows($query);++$i)
    {
    $row = mssql_fetch_row($query);
    $rank = $i+1;
    
      ?>
      <tr>
        <th scope="row"><span class="style28"><strong><?php echo "$rank";?></strong></span></th>
        <td><span class="style28"><strong><?php echo "$row[2]" ;?></strong></span></td>
        <td><span class="style28"><strong><?php echo "$row[3]";?></strong></span></td>
      </tr>
      <?php }?>
    </table>
    and can u change design to white written and black background ty :flag_schw




Advertisement