Hi,
warum wird nicht das eingegebene korrekt abgesendet?
	
							
						
					warum wird nicht das eingegebene korrekt abgesendet?
PHP Code:
	
	
<?php session_start (); ?> 
<html>  
<head>  
  <title>Login</title>  
</head>  
</html>
<body>  
<?php  
session_start ();  
if (!isset ($_SESSION["session_id"]))
{  
  echo '<form action="index.php?content=login_check" method="post">';
?>
<input type="text" name="useremail" value="Ihre Emailadresse" 
 onfocus="if(this.value=='Ihre Emailadresse') 
 this.value='';" onblur="if(this.value=='') 
 this.value='Ihre Emailadresse';" >
<input type="password" name="userpassword" value="Ihr Passwort" 
 onfocus="if(this.value=='Ihr Passwort') 
 this.value='';" onblur="if(this.value=='') 
 this.value='Ihr Passwort';" >
<?php
  //##echo '<input type="text" name="useremail" size="20" width="20" value="Ihr Name" onFocus="if (this.value=='Ihr Name'){ this.value="lol2"}>';
  //##echo 'Kennwort: <input type="password" name="userpassword" size="20">';
  echo '<input type="submit" value="Login">';
echo '<hr>';
echo 'Sie sind noch nicht bei uns angemeldet? Dann kostenlos <a href="index.php?content=register">hier registrieren</a>';
}
else
{
  echo "Sie sind erfolgreich angemeldet.";
}
?>
          
Comment