dannyd Posted March 28, 2008 Share Posted March 28, 2008 How can I force a refresh ? ill add a record in and it wont show unless I do ctrl + F5. Link to comment https://forums.phpfreaks.com/topic/98372-force-refresh/ Share on other sites More sharing options...
redarrow Posted March 28, 2008 Share Posted March 28, 2008 php way if it a windows problam then visit a windows support forum m8. <?php ob_start(); header("Refresh: 3; url=index.php"); ob_flush(); ?> Link to comment https://forums.phpfreaks.com/topic/98372-force-refresh/#findComment-503413 Share on other sites More sharing options...
discomatt Posted March 28, 2008 Share Posted March 28, 2008 Do not rely entirely on the refresh. The end user could have that specific header disabled, but it is rare. Link to comment https://forums.phpfreaks.com/topic/98372-force-refresh/#findComment-503415 Share on other sites More sharing options...
redarrow Posted March 28, 2008 Share Posted March 28, 2008 Force headers off the same type will help there m8. <?php header('WWW-Authenticate: Negotiate'); header('WWW-Authenticate: NTLM', false); ?> Link to comment https://forums.phpfreaks.com/topic/98372-force-refresh/#findComment-503421 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.