bu seferde böle hata veriyor
Notice: Undefined index: e_mail in c:\program files\easyphp1-8\www\tepelitasarim\web\basvuru.php on line 13
Notice: Undefined index: tel in c:\program files\easyphp1-8\www\tepelitasarim\web\basvuru.php on line 14
Notice: Undefined index: aciklama in c:\program files\easyphp1-8\www\tepelitasarim\web\basvuru.php on line 15
You have not entered all the required details.
Please go back and try again.
<html>
<head>
<title> Başvuru Kaydı </title>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-9" />
</head>
<body topmargin="0" bottommargin="0" rightmargin="0" leftmargin="0">
<?php
// kayit
$firma_adi=$_POST['firma_adi'];
$ad=$_POST['ad'];
$soyad=$_POST['soyad'];
$e_mail=$_POST['e_mail'];
$tel=$_POST['tel'];
$aciklama=$_POST['aciklama'];
if (!$firma_adi || !$ad || !$soyad || !$e_mail || !$tel || !$aciklama)
{
echo 'You have not entered all the required details.
'.'Please go back and try again.';
exit;
}
if (!get_magic_quotes_gpc())
{
$firma_adi = addslashes($firma_adi);
$ad = addslashes($ad);
$soyad = addslashes($soyad);
$e_mail = addslashes($e_mail);
$tel = addslashes($tel);
$aciklama = addslashes($aciklama);
}
@ $db = new mysqli('firma_adi', 'ad', 'soyad', 'e_mail', 'tel', 'aciklama');
if(mysqli_connect_errno())
{
echo 'Error: Could not connect to database. Please try again later.';
exit;
}
$query = "insert into iletisim values('".$firma_adi."', '".$ad."', '".$soyad."', '".$e_mail."', '".$tel."', '".$aciklama."')";
$result = $db->query($query);
if ($result) echo $db->affected_rows.' books inserted into database.';
$db->close();
?>
</body>
</html>
yukarıdaki gibi yaptım kardeş hata yukarıda