Oyunculardaki Altın Miktarını Görme

  • Konbuyu başlatan Konbuyu başlatan ExtremE
  • Başlangıç tarihi Başlangıç tarihi
Konu Yazar

ExtremE

Mancıklıpır
Haz
436
10
Buyrun arkadaşlar tamamen bana ait.
PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Toplam Para</title>
<style type="text/css">
<!--
.style1 {color: #FFFFFF}
.style2 {
	font-family: Tahoma;
	font-weight: bold;
}
.style3 {color: #FFFFFF; font-weight: bold;font-family: small fonts; }
.style5 {
	color: #FF9900;
	font-weight: bold;
font-family: Tahoma;
}
.style6 {color: #000000}
-->
</style>
</head>
<body background="bg_acuity.gif" text="#800000">

<?
/// Ko-Cuce ExtremE .
$count = 0;
  $msconnect=odbc_connect("kn_online","extremeus","112233");
  $results=odbc_exec($msconnect,"SELECT strUserID FROM USERDATA");
    
  $partingen1 = 
'

<strong>
<table width="100%" border="1"  cellpadding="0" cellspacing="0"  style="font-size:10px; font-family:Tahoma">
</strong>
<tr bgcolor="#0e1928" style="color:#FFFFFF">
  <td align="center"><strong>#</strong></td>
  <td align="center"><strong>Karakter ismi</strong></td>
  <td align="center"><strong>Para Miktari</strong></td>
  </tr>
  
	  ';
	  echo $partingen1;
	  while (odbc_fetch_row($results)) {
  // Data
  $user = odbc_result($results, 1);
  $info=odbc_exec($msconnect,"SELECT Gold, Level FROM USERDATA WHERE strUserId = '".$user."'");
  $lvl=odbc_result($info, 1);
  $count++ ;
  echo '
				  <tr bgcolor="#EEEEEE" style="color:#000000">
    <td align="center" style="color:#000000"><strong>'.$asd.'</strong></td>
    <td align="center" style="color:#000000"><strong>'.$user.'</strong></td>
	<td align="center" style="color:#000000"><strong>'.$lvl.'</strong></td>
           
        ';}
      $partingen2 = '</p>

	  <table width="100%" border="1"  cellpadding="0" cellspacing="0"  style="font-size:10px; 

font-family:Tahoma">
  <tr bgcolor="#0e1928" style="color:#FFFFFF">
    <td align="center"><strong>Toplam '.$count.' <span class="">Kullanici Var</strong></span></td>	  
';
echo $partingen2;
?>
<br />
</body>
</html>
 
Geri
Üst Alt