Could I please request some guidance with writing some automation code, as I've not done this before?
At present I've written the cron.php file:
Code: Select all
<?php
/* Root Directory*/
header('Location: '."/Automation/start.php");
die();
?>
Code: Select all
<?php
header('Location: '.'/Automation/crnaccount/accountmnge.php');
header('Location: '.'/Automation/crnentrykeys/seviceentries.php');
die();
?>
Also may I ask, using the server's cron job, how would I access the database table, and update or delete a record?
Thank You.