Reputation: 115
how to make a notification code in php? when user make a booking request how to notify admin that there were incoming booking request?
Upvotes: 2
Views: 1058
Reputation: 134177
There are several possibilities, including:
Send an email notification to a known address
Use a database trigger to populate a view that the admin user will see on their app's page
Write a message to a queue (such as AMQP) that will be read by another application.
Upvotes: 2