Fonksiyonumuz Ve Kullanımı
[php]
<?php
/*
Bu PHP Dosyasi Vehbi Akdogan Tarafindan Kodlanmistir.
E-Posta: mf.leqelyy@gmail.com
Web: vehbiakdogan.com
*/
function git ($url, $zaman = 0){
if($zaman){
if(!headers_sent()) {
header("Refresh: {$zaman}; url={$url}");
}else {
echo '<meta http-equiv="refresh" content="'.$zaman.';URL='.$url.'">';
}
}else {
if(!headers_sent()) {
header("Location: {$url}");
}else {
echo '<meta http-equiv="refresh" content="0;URL='.$url.'">';
}
}
}
git("index.php",5); // 5sn sonra
git("index.php"); // Hemen
?>;
[/php]
Hiç yorum yok:
Yorum Gönder