Pages

Wednesday, September 5, 2012

Cron jobs in cpanel using php & mysql

Goto Capnel
Select ->Cron Jobs
put email id which will get email of task


Add New Cron Job

Comman settings

put this command

php -q /home/cpanelusername/public_html/domain name/foldername/crontest.php

 Upload this code

<?php
mysql_connect("localhost","root","");
mysql_select_db("demo5");
$query="TRUNCATE TABLE testcron";
mysql_query($query) or die(mysql_error());
echo "Manoj is Best, Your Cron jobs done";
?> 

No comments:

Post a Comment

Thank you for your Comment....