Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I made a platform to remind me of some things I haven't done.
I've stored this reminds into a database and now I want this PHP based Website to send me emails.
I want to make tests to the database every morning and if I found records that are critical to send notifications to my email.
How can I do this ? Thank you :)
You have to implement cron job for this. For more details about cron job visit following URL:- https://stackoverflow.com/a/30872993/2706551
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I don't know if this can be done but I want to test through a cron job or but the laravel schedule forms from other websites, these websites are mine but independent from this project.
The purpose is to test the forms of several websites automatically to check that they work in the same way that would test a client, it is like making a bot that sends to the forms.
Thanks in advance.
Laravel Dusk (https://laravel.com/docs/8.x/dusk) is what you need to look into.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Sorry if my question is a little confusing, i have made a Notification system using php with codeigniter framework which is working all good. i am using helper to create notifications and check for new notifications. In my case there is only one notification as of now ie.. payment remainder which checks for due date and adds notification to db.
What i am trying to do is to create a form where admin-user will be able to create notifications without the need of programming a helper everytime.
please let me know what is the best way to apporach this situation.
Regards
Max
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have an online test and I want to open on 9:00 and close it on 11:00 automatically.
When test is closed students cannot test anymore.
I have no idea about this.. any help?
Use cron jobs and PHP script to enable and disable or email your students.
Enhanced Solution:
Store in your DB the starting and closing time of the test you can use it in your cron also. When the test is viewed it should see according to the open and closing time if the test is open or closed.
An easy tutorial on cron jobs http://code.tutsplus.com/tutorials/managing-cron-jobs-with-php--net-19428
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
What would the code be to have a comments section on my website where logged in people can place a comment. I got a database and want to use html and php only. No 3th party involved.
Something simple and not to advanced.
You should check out some tutorials:
http://www.youtube.com/watch?v=KGmEZY6DBhw
http://www.2my4edge.com/2013/05/comment-system-using-php-and-mysql.html
We are not going to place an entire code here, you should show us that you've tried instead of just asking us to write all of your code.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to notify website visitors about oracle table updates in current time. How to do this?
Let the database do its work (i.e. hold and manage the data) and have the notification done by the application, that handles the incoming call.