I am new to php and I have a little problem with Undefined
index.
Notice: Undefined index: meno in C:\xampp\htdocs\index.php on line 20
Notice: Undefined index: heslo in C:\xampp\htdocs\index.php on line 21
My code:
<!DOCTYPE html>
<html>
<head>
<title>Prihlásenie sa na stránku</title>
</head>
<h1>
<center>
Prihlásenie
</center>
</h1>
<body>
<form action="prihlasenie.php" method="post">
<P>Meno: <input type="text" name="meno"></input></P>
<P>Heslo: <input type="password" name="heslo"></input></P>
<P><input type="submit" value="prihlasit"></input></P>
</form>
<?php
$uname = $_POST["meno"];
$passwd = $_POST["heslo"];
if ((empty($uname)) or (empty($passwd)))
{
echo "Vyplnte meno a heslo!";
}
?>
</body>
</html>
Thx for response (sorry for my english)