/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php $interval=60*15; // do every 15 minutes... do{ // add the script that has to be ran every 15 minutes here // ... }while(true); ?>