Dobrý den.Chci se zeptat proč mi nefunguje login na mých stránkách.Registrace funguje normálně ale login ne.Tady je můj kód:
<?php
require_once dirname(__FILE__)."/config.php";
if (!session_is_registered("jmeno"))
session_register("jmeno");
if (!session_is_registered("heslo"))
session_register("heslo");
if (isset($_POST['submit'])) {
$select = mysql_query("SELECT id from uzivatele where jmeno = '". $_SESSION["jmeno"] ."' and heslo = '". $_SESSION["heslo"] ."' ") or die (mysql_error());
$udaje = mysql_fetch_assoc($select);
if (mysql_num_rows($select)==1) {
session_regenerate_id();
$_SESSION['jmeno'] = $_POST['jmeno'];
$_SESSION['heslo'] = md5($_POST['heslo']);
header("Location: ./admin/index.php");
}
else {
header("Location: ./401.html", 401);
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>nadpis</title>
</head>
<body>
<form action="#" method="post">
<fieldset>
<legend><b>Přihlášení uživatele</b></legend>
<p><input name="jmeno" size="20" tabindex="1" type="text" /> <label>Jméno</label></p>
<p><input name="heslo" size="20" tabindex="2" type="password" /> <label>Heslo</label></p>
<p><input name="submit" type="submit" tabindex="3" value=" přihlásit » " /></p>
</fieldset>
</form>
<p><a rel="nofollow" href="./register.php">Zaregistrovat</a></p>
</body>
</html>
Vím že už to bylo několikrát zmiňované na různých diskuzích ale mě by zajímalo kde je tady chyba.Děkuji za každou odpověď.