dezkit Posted September 6, 2008 Share Posted September 6, 2008 I have this script <?php session_start(); if(isset($_SESSION['views'])) $_SESSION['views']=$_SESSION['views']+1; else $_SESSION['views']=1; echo "Views: ". $_SESSION['views']; echo "<a href=\"\">Refresh</a>"; ?> Is there a way to refresh the page without the page loading, like the content not moving, but just like "fetching" ? Link to comment https://forums.phpfreaks.com/topic/122956-refresh-page-by-fetching/ Share on other sites More sharing options...
Ken2k7 Posted September 6, 2008 Share Posted September 6, 2008 Use HTML meta refresh. <meta http-equiv="refresh" content="SECONDS_TO_WAIT_BEFORE_REFRESH;url=URL_HERE"> Link to comment https://forums.phpfreaks.com/topic/122956-refresh-page-by-fetching/#findComment-634996 Share on other sites More sharing options...
dezkit Posted September 6, 2008 Author Share Posted September 6, 2008 nooo, i want it like http://www.mediacollege.com/internet/javascript/page/reload.html BUT the page most not move or reload, but the php code is actually executing. Link to comment https://forums.phpfreaks.com/topic/122956-refresh-page-by-fetching/#findComment-635001 Share on other sites More sharing options...
dezkit Posted September 6, 2008 Author Share Posted September 6, 2008 Go to www.Esportsea.com and go to any thread that does not require `premium` go to the bottom of the page and press Fetch New Posts. And when somebody posts something, and you press Fetch New Posts, it appears there. Link to comment https://forums.phpfreaks.com/topic/122956-refresh-page-by-fetching/#findComment-635002 Share on other sites More sharing options...
Ken2k7 Posted September 6, 2008 Share Posted September 6, 2008 AJAX? Link to comment https://forums.phpfreaks.com/topic/122956-refresh-page-by-fetching/#findComment-635049 Share on other sites More sharing options...
dezkit Posted September 6, 2008 Author Share Posted September 6, 2008 I don't know Link to comment https://forums.phpfreaks.com/topic/122956-refresh-page-by-fetching/#findComment-635247 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.