ilk sayfa;
<script></script>
context: document.body,
global: false,
async:false,
success: function(data) {
return data;
}
}).responseText;
if(sonuc=='1') {
$(window).attr('location', 'http://google.com')
} else {
alert('Hatalı Veri Girdiniz!');
}
}
</script>
kontrol.php,
if($_POST) {
$metin1 = "anahtar";
$metin2 = "sandalye";
$metin3 = "masa";
if($_POST['text1']==$metin1 and $_POST['text2']==$metin2 and $_POST['text3']==$metin3) {
echo "1";
} else {
echo "0";
}
} else {
echo "Bu sayfaya dışarıdan erişim bulunmamaktadır!";
}
Mantığı kendine göre geliştirebilirsin.