datenbank verbindet er... muss ein problem sein in den beiden codes... hier nochmal die html seite und die php seite:
html seite:
und dir php seite:
html seite:
PHP:
<?php
$title="Registrieren";
include "header.inc.php";
?>
<FORM NAME="anm" ACTION="register.php" METHOD = "POST" onSubmit="return fcheck();">
<table align="center"><br>
<tr>
<td> Nickname:</td><td><input name = "nic"></td></tr>
<tr>
<td> e-Mail:</td><td><input name = "em"></td></tr>
<tr>
<td> Passwort:</td><td><input name = "pw" type = "password"></td></tr>
<tr>
<td> Passwort Wiederholung:</td><td><input name = "pw2" type = "password"></td></tr>
<tr>
<td> Woher kennst du das Game?</td><td><input name = "known"></td></tr>
</table>
<center>
<input type = "submit" value = "Registrieren">
<input type = "reset" value = "Löschen">
</center>
</FORM>
<?
?>
und dir php seite:
PHP:
<?php
$title="Registrieren";
include "header.inc.php";
?>
<?
include "mysql.inc.php";
$test = "SELECT email FROM spieler WHERE 'em'=email";
$email1 = mysql_query($test,$dz);
$test1 = "SELECT nick FROM spieler WHERE 'nic'=nick";
$nick1 = mysql_query($test1,$dz);
if($pw = $pw2 && $email1 > 0 && $nick1 > 0)
{
$register = "INSERT INTO spieler (userid,nick,email,known,pw) VALUES ('$userid','$nic','$em','$known','$pw')";
$end = mysql_query($register,$dz);
if($end)
{
echo "<body text=\"#FFF00\">Erfolgreich!<br><a href=\"index.php\">Zur Startseite</a></body>";
}
?>
<?php
include "footer.inc.php";
?>