Added full source code

This commit is contained in:
Emmanuel BENOîT 2016-01-10 11:01:49 +01:00
commit 33f8586698
1377 changed files with 123808 additions and 0 deletions

15
site/beta4/Rank.html Normal file
View file

@ -0,0 +1,15 @@
<html>
<head>
<title>Legacy Rankings</title>
</head>
<frameset rows="10%,90%" noresize marginwidth=0 BORDER=0 FRAMEBORDER=0 FRAMESPACING=0>
<frame src="Rankswitch.html" name="Select" >
<frame src="Rankings.php" name="Display">
<noframes>
<body>
Your browser does not accept frames, darn.
</body>
</noframes>
</frameset>
</html>

35
site/beta4/Rankings.php Normal file
View file

@ -0,0 +1,35 @@
<html>
<head>
<title>Legacy: Player Rankings</title>
<link rel='stylesheet' type='text/css' href='red.css' title='Wibble'>
</head>
<body>
<body bgcolor="#333333" text="#COCOCO" link="#CC33FF" vlink="#CC33FF" background="images/background.jpg">
<br>
<?php
$db=mysql_connect("localhost","chris1","")
or die("could not connect:".mysql_error);
mysql_select_db("Legacy",$db);
$GetPlayerList = mysql_query("SELECT `playerName`, `rank` FROM `player` WHERE `admin` != 'Y' AND NOT multi ORDER BY `rank` DESC");
$Rank = '0';
echo "<h3 align='center'>Legacy Player Rankings</h3><table align='center'>";
echo "<th>Rank</th><th>Player</th><th>Points</th>";
while ($PlayerList = mysql_fetch_array($GetPlayerList)){
$Name = $PlayerList['playerName'];
$Rank ++;
$Points = $PlayerList['rank'];
echo "<tr><td>$Rank </td><td><B><em>$Name</em></B></td><td>$Points</td>";
}
echo "</table>";
?>
</body>
</html>

View file

@ -0,0 +1,14 @@
<HTML>
<head>
<title>Legacy: Player Rankings</title>
<link rel='stylesheet' type='text/css' href='red.css' title='Wibble'>
</head>
<body>
<body bgcolor="#333333" text="#COCOCO" link="#CC33FF" vlink="#CC33FF" background="images/background.jpg">
<table><tr>
<th width='25%'><a target='Display' href='Rankings.php'>Current ranking</a></th>
<th width='25%'><a target='Display' href='finmilrank.php'>Financial/Military Rankings</a></th>
<th width='25%'><a target='Display' href='AllyRank.php'>Alliance Rankings</a></th>
<th width='25%'><a target='Display' href='roundrank.php'>Overall Round Rankings</a></th>
</tr></table>
</HTML>

BIN
site/beta4/background.jpg Normal file

Binary file not shown.

After

(image error) Size: 2.9 KiB

Binary file not shown.

After

(image error) Size: 3.6 KiB

Binary file not shown.

After

(image error) Size: 2.9 KiB

BIN
site/beta4/legacyfront.gif Normal file

Binary file not shown.

After

(image error) Size: 86 KiB

BIN
site/beta4/legacyfront.jpg Normal file

Binary file not shown.

After

(image error) Size: 120 KiB

102
site/beta4/red.css Normal file
View file

@ -0,0 +1,102 @@
body {background-color="#000000";
background-image="images/background.jpg";
font-family: Bookman Old Style;
color:#C0C0C0}
A:link{color: #CC3300}
A:visited{color: #CC3300}
h1 {font-size: 14pt;
font-family: Bookman Old Style;
color: #CC3300;
font-style: normal;
line-height: normal;
font-weight: bold;
font-variant: normal;
text-transform: none;
text-decoration: none;
margin-bottom:0px;
margin-top:0px }
h2 {font-size: 14pt;
font-family: Bookman Old Style;
color: #CC3300;
font-style: italic;
line-height: normal;
font-weight: bold;
font-variant: normal;
text-transform: none;
text-decoration: none;
margin-top:0px;
margin-bottom:0px}
h3 {font-size: 14pt;
font-family: Bookman Old Style;
color: #CC3300;
font-style: italic}
h4 {font-size: 12pt;
font-family: Bookman Old Style;
color: #CC3300;
font-style: italic;
line-height: normal;
font-weight: bold;
font-variant: normal;
text-transform: none;
text-decoration: none;
margin-bottom:0px;
margin-top:0px }
h6 {font-size:12pt;
color: #FFFFFF;
font-weight: bold
text-decoration: underline;
margin-bottom:0px;
margin-top:0px}
em {color: #FFFFFF;
font-style: normal}
em.i{font-style: italic}
em.green {color: #33CC33;
font-style: normal;
font-weight: bold}
em.red {color: #FF3300;
font-style: normal;
font-weight: bold}
em.blue {color: #6666FF;
font-style: normal;
font-weight: bold}
p {margin-bottom:0px;
margin-top:0px;}
p.green{color: #33CC33;
font-weight: bold}
p.blue{color: #6666FF;
font-weight: bold}
p.red {color: #FF3300;
font-weight: bold}
p.darkend {color: #808080;
font-weight: normal}
td {font-size: 12pt;
font-family: Bookman Old Style;
color: #C0C0C0;
font-style: normal;
line-height: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
text-decoration: none}
th {font-size: 12pt;
font-family: Bookman Old Style;
color: #CC3300;
font-style: italic;
line-height: normal;
font-weight: bold;
font-variant: normal;
text-transform: none;
text-decoration: none}