Hi everyone.
i'm having the following problem with the PHP code that i'm writing:
Notice: Undefined index: email in c:\program files\easyphp1-8\www\gestao_perfil.php on line 15
Notice: Undefined index: password in c:\program files\easyphp1-8\www\gestao_perfil.php on line 22
Here is the code:
<?php
parse_str ($_SERVER['QUERY_STRING']);
//Tenta estabelecer uma ligação ao servidor MySQL
@mysql_connect("localhost","root","")
or die("Não foi estabelecida uma ligação ao servidor MySQL!");
//Tenta celeccionar a base de dados 12in
@mysql_select_db("12in")
or die("Não foi possivel seleccionar uma base de dados");
// declaração de variáveis, query á base de dados, resultado da query atribuidos ás variáveis $mail $passwd
if (isset ($_POST['email'])) $email = $_POST['email'];
{
$email = $_POST['email'];
$query = "SELECT mail FROM utilizador WHERE mail='$email'";
$result = mysql_query($query);
$mail= @MYSQL_RESULT($result,0,"email");
}
if (isset ($_POST['password'])) $password = $_POST['password'];
{
$password = $_POST['password'];
$query = "SELECT password FROM utilizador WHERE password='$password'";
$result = mysql_query($query);
$passwd = @MYSQL_RESULT($result,0,"password");
}
?>
The idea is to fetch values from a database and in the end update the database with new ones(i know that the last part isn't finnish yet). Why am i getting these messages on my web browser?
Can someone help me to find waht's wrong with the code?