FleyerShaver
Grünschnabel
Ich habe mir das Script von http://script.aculo.us/ runtergeladen. Jetzt habe ich es von meiner test.html so eingebaut:
Da funktioniert es perfekt.(siehe: http://www.gandc.de/infusions/arcade/test.html ) Wenn ich es jetzt aber versuche in eine php-Datei einzubauen funktioniert es nicht. Es pasiert überhaupt nichts. Hier ist der Code:
Die Seite dafür ist http://gandc.de/infusions/arcade/games.php?game_id=337 und es soll der toggle Effekt passieren wenn man und dem Game auf Gamelinks oder Game bewerten klickt. Weiß einer warum das so ist?
HTML:
<script src="../../includes/javascripts/prototype.js" type="text/javascript"></script>
<script src="../../includes/javascripts/scriptaculous.js" type="text/javascript"></script>
<script src="../../includes/javascripts/unittest.js" type="text/javascript"></script>
<a href="#" onclick="Effect.toggle('addgames','BLIND'); return false;">Gamelinks</a>
<div id="addgames" style="display:none;"><div style="background-color:#ff8080;width:300px;border:2px solid red;padding:10px;">seergekfeqwöäogwegopgewopgewg</div></div>
PHP:
<a href="#" onclick="Effect.toggle('addgames','BLIND'); return false;">Gamelinks</a> |
<a href="#" onclick="Effect.toggle('rateit','BLIND'); return false;">Game bewerten</a>
<?php
echo '
<div id="addgames" style="display:none;"><div style="background-color:#ff8080;width:600px;height:auto;border:2px solid red;padding:10px;">
<table width="0" border="0">
<tr>
<td width>Link:</td>
<td width=201><input type="text" value="<a href="http://www.gandc.de/infusions/arcade/games.php?game_id='.$game['lid'].'">'.$game['title'].'</a> " readonly="true"></td>
</tr>
<tr>
<td>Popup</td>
<td><input type="text" value="<a href="http://www.gandc.de/gamepopup.php?id='.$game['lid'].'" target="detail" onclick="javascript:window.open(\'\',\'detail\',\'width='.$width.', height='.$height.', directories=no, toolbar=no, location=no, menubar=no, scrollbars=yes, status=no, resizable=no, dependent=no\')">'.$game['title'].'</a>" readonly="true"></td>
</tr>
<tr>
<td>Iframe</td>
<td><input type="text" value="<iframe src="http://www.gandc.de/gameiframe.php?id='.$game['lid'].'" height="100" width="150"marginheight="0" marginwidth="0" frameborder="0">" readonly="true"></td>
</tr>
</table></div></div>
';
echo '<div id="addgames" style="display:none;"><div style="background-color:#ff8080;width:600px;border:2px solid red;padding:10px;">Test</div></div>';