NukeArcade in wbb?

pimpi
Hallo,

habe auf meiner alten Seite die NukeArcade Spiele:
http://web251.nsi23.miniserver.de/hotmot...name=nukeArcade

Feine Sache, das einbinden in wbb-Board ist ja kein Problem, ich strauchel nur bei den Highscores. Da bin ich nicht so auf Zack unglücklich

Das Archiv ist im Anhang, habe auch schonmal Asteriods eingebunden:
http://www.er-6n-forum.de/spiele-asteriods.php

So sieht die display-datei aus:
code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
<?PHP

if (!eregi("modules.php", $_SERVER['SCRIPT_NAME'])) {
    die ("You can't access this file directly...");
}

opentable();
echo"<link href=\"modules/$module_name/design.css\" rel=\"stylesheet\" type=\"text/css\">"
 ."";


function tetris() {

   echo
   "<TABLE width=\"100%\"  bgColor=\"#ecf0f6\">
  <TBODY>
    <TR> 
      <TD align=\"middle\" colSpan=\"5\"><div align=\"center\">
          <h2><h2>Highscores</FONT></h2>
        </div></TD>
    </TR>
    <TR> 
      <TD align=\"center\" valign=\"middle\" width=\"20%\"  bgColor=\"#c9d7e4\"> <h4>Asteroids</h4></TD>
      <TD align=\"center\" valign=\"middle\" width=\"20%\"  bgColor=\"#c9d7e4\"> <h4>SpaceInvaders</h4></TD>
      <TD align=\"center\" valign=\"middle\" width=\"20%\"  bgColor=\"#c9d7e4\"> <h4>Pacman</h4></TD>
      <TD align=\"center\" valign=\"middle\" width=\"20%\"  bgColor=\"#c9d7e4\"> <h4>Tetris</h4></TD>
      <TD align=\"center\" valign=\"middle\" width=\"20%\"  bgColor=\"#c9d7e4\"> <h4>Snake</h4></TD>
    </TR>
    <TR vAlign=\"top\"> 
      <TD> <TABLE width=\"100%\"  border=\"1\" frame=\"box\">";

  

 global $prefix, $dbi, $score, $name;
    $result = sql_query("select name, score from nuke_arcade_asteroids order by score DESC limit 0,11", $dbi);
    while (list($name, $score) = sql_fetch_row($result, $dbi)) {
  
    echo "<TBODY>
            <TR> 
              <TD width=\"70%\" class=\"medium\"><b>$name</b></TD>
              <TD align=right width=\"30%\" >$score</TD>
            </TR>
          </TBODY>";}
		  
    echo "</TABLE></TD>
      <TD> <TABLE width=\"100%\" border=\"1\" frame=\"box\">";

	  
 global $prefix, $dbi, $score, $name;
    $result = sql_query("select name, score from nuke_arcade_invaders order by score DESC limit 0,11", $dbi);
    while (list($name, $score) = sql_fetch_row($result, $dbi)) {
    echo "<TBODY>
            <TR> 
              <TD width=\"70%\" class=\"medium\" ><B>$name</B></TD>
              <TD align=right width=\"30%\" >$score</TD>
            </TR>
          </TBODY>";}
 
 
    echo "</TABLE></TD>
      <TD> <TABLE width=\"100%\" border=\"1\" frame=\"box\">";
	  
 global $prefix, $dbi, $score, $name;
    $result = sql_query("select name, score from nuke_arcade_pacman order by score DESC limit 0,11", $dbi);
    while (list($name, $score) = sql_fetch_row($result, $dbi)) {
  
    echo "<TBODY>
            <TR> 
              <TD width=\"70%\"  class=\"medium\"><B>$name</B></TD>
              <TD align=right width=\"30%\" >$score</TD>
            </TR>
          </TBODY>";}
		  
    echo "</TABLE></TD>
      <TD> <TABLE width=\"100%\" border=\"1\" frame=\"box\">";
         
 global $prefix, $dbi, $score, $name;
    $result = sql_query("select name, score from nuke_arcade_tetris order by score DESC limit 0,11", $dbi);
    while (list($name, $score) = sql_fetch_row($result, $dbi)) {
  
    echo "<TBODY>
            <TR> 
              <TD width=\"70%\"  class=\"medium\"><B>$name</B></TD>
              <TD align=right width=\"30%\" >$score</TD>
            </TR>
          </TBODY>";}	 
		 

    echo "</TABLE></TD>
      <TD> <TABLE width=\"100%\" border=\"1\" frame=\"box\">
          <TBODY>
            <TR> 
              <TD align=middle bgColor=\"#c9d7e4\" colSpan=\"2\"><B>Slug-Level</B></TD>
            </TR>";
           
	
 global $prefix, $dbi, $score, $name;
    $result = sql_query("select name, score from nuke_arcade_snake1 order by score DESC limit 0,3", $dbi);
    while (list($name, $score) = sql_fetch_row($result, $dbi)) {
  
    echo "
            <TR> 
              <TD width=\"70%\"  class=\"medium\"><B>$name</B></TD>
              <TD align=right width=\"30%\" >$score</TD>
            </TR>
          ";}

			
			
 echo"           <TR> 
              <TD align=middle bgColor=\"#c9d7e4\" colSpan=\"2\"><B>Worm-Level</B></TD>
            </TR>";
         
		   
 global $prefix, $dbi, $score, $name;
    $result = sql_query("select name, score from nuke_arcade_snake2 order by score DESC limit 0,3", $dbi);
    while (list($name, $score) = sql_fetch_row($result, $dbi)) {
  
    echo "
            <TR> 
              <TD width=\"70%\"  class=\"medium\"><B>$name</B></TD>
              <TD align=right width=\"30%\" >$score</TD>
            </TR>
          ";}
			
			
echo"            <TR> 
              <TD align=middle bgColor=\"#c9d7e4\" colSpan=\"2\"><B>Python-Level</B></TD>
            </TR>";
           
 global $prefix, $dbi, $score, $name;
    $result = sql_query("select name, score from nuke_arcade_snake3 order by score DESC limit 0,3", $dbi);
    while (list($name, $score) = sql_fetch_row($result, $dbi)) {
  
    echo "
            <TR> 
              <TD width=\"70%\"  class=\"medium\"><B>$name</B></TD>
              <TD align=right width=\"30%\" >$score</TD>
            </TR>
          ";}
			
  echo"        </TBODY>
        </TABLE></TD>
    </TR>
  </TBODY>
</TABLE>";

}

switch($op) {

default:
tetris();
    break;

}


closetable();
?>


So und da hört es auf, die SQL Datei dürfte sich ja ohne Probleme einspielen lassen. Aber wie mach ich dem Heini jetzt klar daß diese auch korrekt gespeichert werden? Bitte um Hilfe smile Siehe auch in dem Archiv die Info. Wäre klasse wenn es jemand umsetzen könnte, andere freuen sich bestimmt auch Freude .

grüße Markus

Edit: Was denn...kein einziger Zeit und Lust zu helfen? unglücklich