alestapanel adlı üyeden alıntı
Aşağıdaki kodu 404.php ye koy.. başka herhangi bir yazı kod vs olmasın..
ve
taglarının arasına gelmeli.. bu şekilde get header fonksiyonundan sonra koyarsan çalışır mı bilmiyorum.. bir dene bakalım dediğim kodu get header kodunun altına yapıştır <script>
var time = 3; // Kaç saniye sonra yönlenecek
var page = "http://wmaraci.com"; // Yönleneği sayfa
function countDown(){
time--;
gett("yonlendir").innerHTML = time;
if(time == 0){
window.location = page;
}
}
function gett(id){
if(document.getElementById) return document.getElementById(id);
if(document.all) return document.all.id;
if(document.layers) return document.layers.id;
if(window.opera) return window.opera.id;
}
function init(){
if(gett('yonlendir')){
setInterval(countDown, 1000);
gett("yonlendir").innerHTML = time;
}
else{
setTimeout(init, 50);
}
}
document.init();
</script>
saniye sonra anasayfaya yönleneceksiniz.
<script>
var time = 3; // Kaç saniye sonra yönlenecek
var page = "http://wmaraci.com"; // Yönleneği sayfa
function countDown(){
time--;
gett("yonlendir").innerHTML = time;
if(time == 0){
window.location = page;
}
}
function gett(id){
if(document.getElementById) return document.getElementById(id);
if(document.all) return document.all.id;
if(document.layers) return document.layers.id;
if(window.opera) return window.opera.id;
}
function init(){
if(gett('yonlendir')){
setInterval(countDown, 1000);
gett("yonlendir").innerHTML = time;
}
else{
setTimeout(init, 50);
}
}
document.init();
</script>
saniye sonra anasayfaya yönleneceksiniz.