Raised This Month: $51 Target: $400
 12% 

need php codes


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
yamin
BANNED
Join Date: Jan 2012
Location: Sharjah
Old 04-06-2012 , 05:49   need php codes
Reply With Quote #1

i need php code for Player Type (player type should be detected "s" flag for golden player and "t" flag for silver player and "n" flag for administrator) and Absence Bar should be only for silver player and golden player.Please check the picture to check example.
PHP Code:
<html>
<head>
<style type="text/css">
<!-- 
td{font-size: 9pt;}
center{display: none;}
-->
</style>
<link rel="stylesheet" href="cs.css" type="text/css">
</head>
<?php
    $db 
mysql_connect("localhost","amxx","amx");
    
mysql_select_db("amxmodx",$db);
?>
<body topmargin="0" leftmargin="-2">
<basefont size="-1" face="MS GOTHIC">
<table width="700" cellpadding="0" cellspacing="0">
<tr><td colspan="13" class="catHead"><span class="genmed"><b>Played Time TOP 100</b></span>
</td>
</tr>
<tr>
<td class="row1" align="center">Rank</td>
<td class="row1" align="center">Name</td>
<td class="row1" align="center">Played Time</td>
<td class="row1" align="center">Last Activity</td>
<td class="row1" align="center">Inactive Days</td>
</tr>
<?php
$i 
1;
$result mysql_query("SELECT * FROM played_time ORDER BY playedtime DESC LIMIT 100",$db);
if (
$myrow mysql_fetch_array($result)) {
    do{
        list(
$a$b$c) = explode('-'$myrow["date"]);
        
printf("<tr><td align=right>%s</td><td align=center>%s</td><td align=center>%s</td><td align=center>%s</td><td>%s</td></tr>\n",$i,$myrow["name"],$myrow["playedtime"],$myrow["date"],date("d")-$c);
        
$i++;
    } while (
$myrow mysql_fetch_array($result));
}
?>
</table>
</body></html>
Attached Thumbnails
Click image for larger version

Name:	bars.jpg
Views:	132
Size:	95.2 KB
ID:	101640  

Last edited by yamin; 04-06-2012 at 05:51.
yamin is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 06:18.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode