i have made this top15 design if you want you can use this. screeenshot is attached
PHP Code:
#define MAX_BUFFER 2047
new szBuffer[ MAX_BUFFER + 1 ];
MakeTOP15( ) {
static iLen;
iLen = formatex( szBuffer, sizeof( szBuffer ) - 1,
"<STYLE>\
body{background:#FFFFFF;color:#4f6b72;font-family:sans-serif;font: normal 11px auto;}\
table{border-style:solid;border-width:1px;border-color:#FFFFFF;font-size:11px;font-family:sans-serif}\
th{border-right:1px solid #C1DAD7;border-bottom: 1px solid #C1DAD7;border-top:1px solid #C1DAD7;padding:8px 8px 8px;}\
td{border-right:1px solid #C1DAD7;border-bottom:1px solid #C1DAD7;padding:6px 8px 6px;}\
</STYLE>\
<table align=center width=100%% cellpadding=2 cellspacing=0 border=0>" );
iLen += formatex( szBuffer[ iLen ], sizeof( szBuffer ) - 1 - iLen,
"<tr align=left bgcolor=#CAE8EA>\
<th width=5%% align=left> # \
<th width=70%% align=left> Nick \
<th width=25%%> Points" );
for( iPosition = 0; iPosition < iSize; iPosition++ ) {
//Grab you data.
iLen += formatex( szBuffer[ iLen ], sizeof( szBuffer ) - 1 - iLen, "<tr align=left bgcolor=#FFFFFF>" );
iLen += formatex( szBuffer[ iLen ], sizeof( szBuffer ) - 1 - iLen, "<td>%d", );
iLen += formatex( szBuffer[ iLen ], sizeof( szBuffer ) - 1 - iLen, "<td align=left>%s", );
iLen += formatex( szBuffer[ iLen ], sizeof( szBuffer ) - 1 - iLen, "<td>%d", );
}
iLen += formatex( szBuffer[ iLen ], sizeof( szBuffer ) - 1 - iLen, "</table></body>" );
}