PHP 3 saniye içinde başka bir sayfaya geçmek için nasıl?

3 Cevap php

İşte benim bir deneyin:

@header("Content-type: text/html; charset=utf-8");
@header("Location:/index.php");
@header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
@header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past

Görüldüğü gibi, "3 saniye" üzerinde kontrol 3 saniye içinde etkili olması için nasıl, var mı?

3 Cevap

Bu PHP, çalışması gerekir:

header('Refresh: 3; url=index.php');

Böyle, yenileme meta tag yararlanmak:

<html> 
<head> 
    <title>redirect page</title> 
    <META http-equiv="refresh" content="5;URL=http://www.newurl.com"> 
</head> 
<body bgcolor="#ffffff"> 
    The contents you are looking for have moved. 
    You will be redirected to the new location automatically in 5 seconds.
</body>
</html>