“Auto Refresh Axtintion PHP” Ответ

PHP Auto Refresh Page

<?php
    $url1=$_SERVER['REQUEST_URI'];
    header("Refresh: 5; URL=$url1");
?>
Colorful Cowfish

Auto Refresh Axtintion PHP

<?php
$page = $_SERVER['PHP_SELF'];
$sec = "10";
?>
<html>
    <head>
    <meta http-equiv="refresh" content="<?php echo $sec?>;URL='<?php echo $page?>'">
    </head>
    <body>
    <?php
        echo "Watch the page reload itself in 10 second!";
    ?>
    </body>
</html>
Anxious Antelope

Ответы похожие на “Auto Refresh Axtintion PHP”

Вопросы похожие на “Auto Refresh Axtintion PHP”

Больше похожих ответов на “Auto Refresh Axtintion PHP” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования