-3

I need a script which can exceute automatically when Current date reached. Forexample: when CurrentDate > DueDate Add Surcharge with Total Dues.

Note:

Add Surcharge with Only those customers who did'nt pay their monthly bill.

Can anyone give me some hint or any kind of Source. Thanks

Imran Khan
  • 31
  • 6

1 Answers1

0

write a cron every minute

* * * * * /path/to/php /var/www/html/a.php

or every 24th hour

0 0 * * * /path/to/php /var/www/html/a.php
Asad Nauman
  • 971
  • 11
  • 19