I want to know how I can schedule a dynamic(auto populated data) function to auto run everyday at saved time?
Let\'s say I have a form that once the button is clicke
I am suggesting you create Cron Entries dynamically through a wrapper script which configure the cron entry to run your particular function when you actually wanted it to run.
For your specific case here Below is what I would suggest :
References
1. Create Cron Using Bash
crontab -l | { cat; echo "0 0 0 0 0 some entry"; } | crontab -
2. Delete/Automate Cron
crontab -l -u | grep -v