Change page refresh timer
P粉354948724
P粉354948724 2024-02-26 15:24:20
0
1
382

I have a specific requirement that my page refreshes after 2 seconds. I have used this code to achieve this functionality -

<?php
    $page = $_SERVER['PHP_SELF'];
    $sec = "2";
?>
<html>
    <head>
        <meta http-equiv="refresh" content="<?php echo $sec?>;URL='<?php echo $page?>'">
    </head>
</html>

Now I need a button that can change the refresh time from 2 seconds to 10 seconds to achieve different functions.

If anyone could suggest how I should achieve this, that would be of great help. Thanks

P粉354948724
P粉354948724

reply all(1)
P粉578680675

Add button with js code: In HTML

Add tag ID in metadata

Add js script to the page

renew: Result page:



    
        
    
    
    
        
    
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!