<?php $past = time() - 200; //this makes the time in the past to destroy the cookie setcookie(ID_my_site, gone, $past); setcookie(Key_my_site, gone, $past); header("Location: /gaming/index2.php"); ?>
Problem is that the pages they have visited can still be seen if they haven't closed there browser because it stores them in temp internet files. Is there a way to delete it from temp internet files, or make it get an updated version of the page each time they try to access it?
I think i've seen it done before in the (html) header, it sets a time on how long the page is valid for or something?