Registriert seit: 3. Feb 2005
Ort: Hilzingen am Bodensee
469 Beiträge
Delphi 2005 Personal
|
Re: [PHP] Nach bestimmter Zeit auf andere Seite weiterleiten
15. Jul 2005, 20:31
Peilen = Verstehen
JUHU es klappt
THX
der C0de :
Zitat:
< html>
<head>
<?php
$delay = 2;
$newlocation = "http://assun.de"
?>
<meta http-equiv="refresh" content="<?php echo $delay; ?>; URL=<?php echo $newlocation; ?>">
</head>
</ html
|