İslem.php kodları aşağıda yardımcı olurmusunuz nerde sorun var
include ('/tasarim/admin/config.php');
?>
Başlıksız Belge
$username = trim($_POST['username']);
$password = trim($_POST['password']);
$email = trim($_POST['email']);
$password2 = md5($password);
if((empty($username)) or (empty($password)) or (empty($email)){
echo "Boş alan bırakmayınız..";
}
elseif(!filter_var($email,FILTER_VALIDATE_EMAIL)){
echo "Geçersiz email adresi";
}else{
$add = mysql_query("insert into kullanicilar (username,password,email) values ('$username','$password2','$email')");
if($add){
echo "tebrikler";
header("refresh:2; url=tasarim/admin/kayit.php");
}else{
echo "hata";
header("refresh:2; url=tasarim/admin/kayit.php");
}
}
?>