Hi What is the best way to refresh the content of a var that is included? For example i have this code:
<marquee>
<?php
include('note.php');
?>
</marquee>
This is great, as i can show on the page the contents of note.php - say i change note.php but i dont want users refreshing to see the changes... is there any way to refresh the included file every 3 minutes for example?
Thanks!