1) This is not a PHP problem, next time post in the correct section.
You have to achieve this from Javascript:
Code:
<script type="javascript/text">
function reloadIt()
{
frm=document.getElementsByName("twitter")[0];//we get the iframe object
frm.src=frm.src;//or you can set the src to a new src.
setTimeout("reloadIt()",60000);//the function will run every 60000 miliseconds, or 60 seconds
}
</script>
<body onload="reloadIt()">
<iframe id="twitter" style="width:100%;height:100%" src="http://twitterrooms.co.uk/mobile">
<p>Your browser does not support iframes.</p>
</iframe>
Bookmarks