How do I redirect to another page after 5 minutes using PHP?
Javascript's setTimeout() is probably what you want. An example would be:
setTimeout(function(){ window.location = "";}, 5*60*1000);
window.location is what you can use in javascript to set the current location of the window. Something to consider, however, is that most browsers do not let you set window.location without some type of user input before hand, such as a click.
See here