Verfasst: 26.02.2003 18:06
ups, dummer Zufall, kommt davon wenn man das halbfertig ne weile leigen lässt
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
<table>
<tr>
<td>
<?php
include($rootdir."layout/chat_get_text.inc.php");
include($rootdir."layout/chat_print_text.inc.php");
?>
</td>
</tr>
<tr>
<td>
<script language="Javascript" type="text/javascript">
<!--
document.chat.text.focus();
//-->
</script>
<form name="chat" action="<?php echo $rootdir."index.php";?>" method="POST">
<input type="text" name="text" maxlength="100">
<input type="hidden" name="id" value="<?php if($_POST['id']) {echo $_POST['id'];} else{echo $id;} ?>">
<input type="submit" name="aktualisieren" value="senden/aktualisieren">
</form>
</td>
</tr>
</table>