Revision 1, 0.9 KB
(checked in by andrewgunn, 14 years ago)
|
Added original EVE-Killboard.net source code.
|
Line | |
---|
1 | <? |
---|
2 | require_once( "db.php" ); |
---|
3 | require_once( "class.page.php" ); |
---|
4 | |
---|
5 | $sys_id = $_GET['sys_id']; |
---|
6 | |
---|
7 | $html .= "<html><head><title>System detail</title><link rel=\"stylesheet\" type=\"text/css\" href=\"style.css\"></head>"; |
---|
8 | $html .= "<body bgcolor=\"#222222\"><table class=kb-table width=\"100%\" height=\"100%\"><tr><td valign=top>"; |
---|
9 | |
---|
10 | $html .= "<table border=\"0\"><tr>"; |
---|
11 | $html .= "<td><img src=\"?a=mapview&sys_id=".$sys_id."&mode=map&size=200\" border=0></td>"; |
---|
12 | $html .= "<td><img src=\"?a=mapview&sys_id=".$sys_id."&mode=region&size=200\" border=0></td>"; |
---|
13 | $html .= "<td><img src=\"?a=mapview&sys_id=".$sys_id."&mode=cons&size=200\" border=0></td>"; |
---|
14 | $html .= "</tr></table>"; |
---|
15 | |
---|
16 | $html .= "</td></tr>"; |
---|
17 | $html .= "<tr><td align=center><button id=close name=close value=\"Close\" onclick=\"window.close();\">Close</button></td></tr>"; |
---|
18 | $html .= "</table></body></html>"; |
---|
19 | |
---|
20 | echo $html; |
---|
21 | ?> |
---|