I have a problem with $remarks. It sends me an error:
Notice: Undefined index: remarks in C:\xampp\htdocs\index.php on line 83
and i dont know how to solve this. When i complete all the fields in register section it looks ok ("registration succesfully"), but there is no data added in my database. Can someone help me?
<?php
$remarks=$_GET['remarks'];
$username="username";
$password="password";
if ($remarks==null and $remarks=="")
{
echo 'Register Here';
}
if ($remarks=='success')
{
$insert = mysql_query("INSERT INTO simple_login('username','password') VALUES ('$username','$password')");
echo 'Registration Success';
}
?>