CRON jobs with go daddy hosting |
I'm using CodeIgniter as my framework and I want that every minute, alert will appear on my website. (This code are just for testing... My main code for cron have queries.)
This is my controller: <?php class alert extends CI_Controller { public function __construct() { parent::__construct(); $this->load->view("alert_view.php"); } public function index() { $this->load->view("alert_view.php"); } } ?> And This is my View: <script> alert("SCHEDULED echatspin echatrandom ALERT EVERY MINUTE"); </script> |
Messages In This Thread |
CRON jobs with go daddy hosting - by MariOkudoduma - 09-15-2022, 05:07 AM
|