Tutorial by Examples: cronjob

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Cron extends CI_Controller { /** * This is default constructor of the class */ public function __construct() { parent::__construct(); $this->load->library('input'...
Crontab contains cron jobs, each related to a specific task. Cron jobs are composed of two parts, the cron expression, and a shell command to be run: * * * * * command/to/run Each field in the above expression * * * * * is an option for setting the schedule frequency. It is composed of minute,...

Page 1 of 1