Bin neu im php geschäfft.
ich lern aus nem buch.
von DataBecker.
ne Javascript übung is da aufeinmal drin zum thema anmeldung...
<html>
<head>
<title>html formular</title>
<Script language="JavaScript">
function submitform()
{
document.login.username.value =
document.temp_login.username.value ;
document.login.password.value =
document.temp_login.password.value ;
document.login.submit() ;
}
</Script>
</head>
<body>
<form name="temp_login" action="">
<input type="text" name="username" size="20"/><br/>
<input type="password" name="password" size="20"/><br/>
<a href="javascript:submitform()">Anmeldung</a>
</form>
<form name="login" action="login.php">
<input type="hidden" name="username"/>
<input type="hidden" name="password"/>
</form>
</body>
</html>
diese fürht mich dann zu login.php mit nem komischen title.
habt ihr ne idee was mir das beibringen soll?
PS: danke schonmal fürdie antwort engelb.
ich lern aus nem buch.
von DataBecker.
ne Javascript übung is da aufeinmal drin zum thema anmeldung...
<html>
<head>
<title>html formular</title>
<Script language="JavaScript">
function submitform()
{
document.login.username.value =
document.temp_login.username.value ;
document.login.password.value =
document.temp_login.password.value ;
document.login.submit() ;
}
</Script>
</head>
<body>
<form name="temp_login" action="">
<input type="text" name="username" size="20"/><br/>
<input type="password" name="password" size="20"/><br/>
<a href="javascript:submitform()">Anmeldung</a>
</form>
<form name="login" action="login.php">
<input type="hidden" name="username"/>
<input type="hidden" name="password"/>
</form>
</body>
</html>
diese fürht mich dann zu login.php mit nem komischen title.
habt ihr ne idee was mir das beibringen soll?
PS: danke schonmal fürdie antwort engelb.