irgendwie bekomme ich das noch nicht hin, vielleicht kannst du mir ein bisschen helfen, wäre echt nett

ich habe das jetzt so versucht...
die reg. soll auf eine extra seite, also nicht im yabbse verzeichtiss... deshalb extra db auswhl wieder.
<?php/*****************************************************************************//* Register.php *//*****************************************************************************//* YaBB: Yet another Bulletin Board *//* Open-Source Project started by Zef Hemel ([email protected]) *//* Software Version: YaBB SE *//* ========================================================================= *//* Software Distributed by: http://www.yabb.info *//* Support, News, Updates at: http://www.yabb.info/community *//* http://yabb.xnull.com/community *//* ========================================================================= *//* Copyright (c) 2001-2002 Lewis Media - All Rights Reserved *//* Software by: The YaBB Development Team *//*****************************************************************************//* This program is free software; you can redistribute it and/or modify it *//* under the terms of the GNU General Public License as published by the *//* Free Software Foundation; either version 2 of the License, or (at your *//* option) any later version. *//* *//* This program is distributed in the hope that it will be useful, but *//* WITHOUT ANY WARRANTY; without even the implied warranty of *//* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General *//* Public License for more details. *//* *//* The GNU GPL can be found in gpl.txt in this directory *//*****************************************************************************/// einstellung $id = ""; $pw = ""; $host = "localhost"; $database = "yabb"; $table = "yabbse_members";// ende// server + db connection$conn_id = mysql_connect($host,$id,$pw);mysql_select_db($database,$conn_id); // speichern der einträge if ($action=="save") { mysql_query("insert into $table (name,email,passwort) VALUES ('$memberName','$emailADDress','$passwd')"); }?>
<table width="952" align="center" bgcolor="#FFFFFF" bordercolor="#FF9900">
<form action="<?php echo $PHP_SELF; ?>
" method=post>
<tr bgcolor="#006699" bordercolor="#FF9900">
<input type="hidden" name="action" value="save">
<td width="474" height="75"><font face="Verdana" size="2" color="#FFFFFF">*
Benutzernamen wählen: <br>
<font size="1">Nur zur Identifikation beim Einloggen. Sonderzeichen im
Namen <br>
kannst Du nach der Registrierung in Deinem Profil einstellen.</font></font>
<font color="#FFFFFF"><b><font size="2" face="Verdana"><br>
</font></b></font></td>
<td colspan="2" height="75" width="466"><b><font face="Verdana" size="2" color="#000099">
<input type=text name=name>
</font></b></td>
</tr>
<tr bgcolor="#006699" bordercolor="#FF9900">
<td width="474" height="75"><font size="2" face="Verdana" color="#FFFFFF">*
E-Mail: <br>
<font size="1">Es muss eine gültige E-Mail Adresse sein.</font></font></td>
<td colspan="2" height="75" width="466"><b><font face="Verdana" size="2" color="#000099">
<input type=TEXT name=email>
</font></b></td>
</tr>
<tr bgcolor="#006699" bordercolor="#FF9900">
<td height="38" width="474">
<p><font face="Verdana" size="2" color="#FFFFFF">* Passwort:</font></p>
</td>
<td height="38" colspan="2" width="466">
<p><font size="2"><font size="2"><font face="Verdana"><font face="Verdana"><b><b><b><b><b><b><font face="Verdana" size="2" color="#000099">
<input type=TEXT name=Passwort>
</font></b></b></b></b></b></b></font></font></font></font> </p>
</tr>
<tr bgcolor="#006699" bordercolor="#FF9900">
<td height="40" width="474"><font size="2" face="Verdana" color="#FFFFFF">*
Passwort wiederholen: </font></td>
<td height="40" colspan="2" width="466">
<div align="left"><b><font face="Verdana" size="2" color="#000099">
<input type=TEXT name=Password2>
</font></b></div>
</td>
<tr bgcolor="#006699" bordercolor="#FF9900">
<td height="86" colspan="3">
<center>
<input type=submit value="Registrieren" name="submit">
</center>
</td>
</form>
</table>