0)
{
$error= Get_Text("makeuser_error_nick1"). $_POST["Nick"]. Get_Text("makeuser_error_nick3");
}
elseif( strlen($_POST["email"]) <= 6 && strstr($_POST["email"], "@") == FALSE &&
strstr($_POST["email"], ".") == FALSE )
{
$error= Get_Text("makeuser_error_mail");
}
elseif( !is_numeric($_POST["Alter"]))
{
$error= Get_Text("makeuser_error_Alter");
}
elseif( $_POST["Passwort"] != $_POST["Passwort2"] )
{
$error= Get_Text("makeuser_error_password1");
}
elseif( strlen($_POST["Passwort"]) < 6 )
{
$error= Get_Text("makeuser_error_password2");
}
else
{
$_POST["Passwort"] = PassCrypt($_POST["Passwort"]);
unset($_POST["Passwort2"]);
$SQL = "INSERT INTO `User` (".
"`Nick` , ". "`Name` , ".
"`Vorname`, ". "`Alter` , ".
"`Telefon`, ". "`DECT`, ".
"`Handy`, ". "`email`, ".
"`ICQ`, ". "`jabber`, ".
"`Size`, ". "`Passwort`, ".
"`Art` , ". "`kommentar`, ".
"`Hometown` ) ".
"VALUES ( ".
"'". $_POST["Nick"]. "', ". "'". $_POST["Name"]. "', ".
"'". $_POST["Vorname"]. "', ". $_POST["Alter"]. ", ".
"'". $_POST["Telefon"]. "', ". "'". $_POST["DECT"]. "', ".
"'". $_POST["Handy"]. "', ". "'". $_POST["email"]. "', ".
"'". $_POST["ICQ"]. "', ". "'". $_POST["jabber"]. "', ".
"'". $_POST["Size"]. "', ". "'". $_POST["Passwort"]. "', ".
"'". $_POST["Art"]. "', ". "'". $_POST["kommentar"]. "', ".
"'". $_POST["Hometown"]. "' );";
$Erg = mysql_query($SQL, $con);
if ($Erg != 1)
{
echo Get_Text("makeuser_error_write1"). "
\n";
$error = mysql_error($con);
}
else
{
echo "
". Get_Text("makeuser_writeOK"). "\n"; $SQL2 = "SELECT UID FROM `User` WHERE Nick='". $_POST["Nick"]. "';"; $Erg2 = mysql_query($SQL2, $con); $Data = mysql_fetch_array($Erg2); $SQL3 = "INSERT INTO `UserCVS` (`UID`) VALUES (". $Data["UID"]. ");"; $Erg3 = mysql_query($SQL3, $con); if ($Erg3 != 1) { echo "
\n$error\n
\n\n"; } else { //init vars $_POST["Nick"] = ""; $_POST["Name"] = ""; $_POST["Vorname"] = ""; $_POST["Alter"] = ""; $_POST["Telefon"] = ""; $_POST["DECT"] = ""; $_POST["Handy"] = ""; $_POST["email"] = ""; $_POST["ICQ"] = ""; $_POST["jabber"] = ""; $_POST["Size"] = ""; $_POST["Art"] = ""; $_POST["kommentar"] = ""; $_POST["Hometown"] = ""; } echo "