und was genau willst du machen?
kostenlosen ICQ Live Support

Du kannst aber in den phpbb.de IRC Chat kommen
So ich verstehe nicht wie ich weiter machen muss um es so einzustellen das ich eine bestimmte Seite in mein Template einfügen kann.<?php
//Benötigte Dateien und Variablen von phpBB
define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
//Session auslesen und Benutzer-Informationen laden
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
//Dieser Block kann weggelassen werden, wenn du nur den die Userdaten brauchst und auf den phpBB-Header verzichen möchtest
$page_title = 'Meine Seite';
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
/***** Inhaltsbereich ******/
//Footer - nur dann weglassen, wenn du auch den Header weglässt
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
?>
und am besten das template system benutzen (siehe beitrag von Boecki91)/***** Inhaltsbereich ******/
natürlich noch etwas grafisch anpassen und den pfad zu anmeldung.phphttp://87.230.91.8/accpage/ hat geschrieben:<form action="anmeldung.php" method="post">
<strong><span class="Stil1">A</span><span class="Stil4">ccountname:</span></strong><br>
<span class="Stil4">«</span>
<input type="text" name="account">
<span class="Stil4">»</span><br>
<strong><span class="Stil1">P</span><span class="Stil4">asswort:</span></strong><br>
<span class="Stil4">«</span>
<input type="password" name="passwort">
<span class="Stil4">»</span><br>
<strong><span class="Stil1">P</span><span class="Stil4">asswort:</span></strong><br>
<span class="Stil4">«</span>
<input type="password" name="repasswort">
<span class="Stil4">»</span><br>
<strong><span class="Stil1">E</span><span class="Stil4">mailadresse:</span></strong><br>
<span class="Stil4">«</span>
<input type="text" name="email">
<span class="Stil4">»</span><br>
<span class="Stil6">Möchten sie Burning Crusade aktivieren? </span><br>
<span class="Stil1">J</span><span class="Stil4">a</span>
<input type="radio" name="bc" value="8">
<span class="Stil1">N</span><span class="Stil4">ein</span>
<input type="radio" name="bc" value="0"> <br>
<input type="submit" value="Account erstellen!">
<br>
</form>
Ich erstelle eine neue datei z.b. account_erstellung.tpl und füge den Text den du mir eben gegeben hast ein und lade es anschließend ins template hoch?erstell ne seite wie oben und eine tpl dazu (siehe link von Boecki91)
deinen Code einsetzen/***** Inhaltsbereich ******/