Kód: Vybrat vše
<h1>Login</h1>
<form action="login_zpracuj.php" method="post">
<input type="hidden" name="sent" value=""/>
<input type="text" name="jmeno" maxlength="32"/> <strong>Už. jméno</strong> <br/>
<input type="password" name="heslo" maxlength="32"/> <strong>Heslo</strong> <br/>
<input type="submit" name="send" value="Přihlaš"/>
</form>
Toto mi nefunguje
Kód: Vybrat vše
echo "<h1>Login</h1>";
echo "<form action="login_zpracuj.php" method="post">";
echo "<input type="hidden" name="sent" value=""/>" ;
echo "<input type="text" name="jmeno" maxlength="32"/> <strong>Už. jméno</strong> <br/>";
echo "<input type="password" name="heslo" maxlength="32"/> <strong>Heslo</strong> <br/>";
echo "<input type="submit" name="send" value="Přihlaš"/>" ;
echo "</form> ";