user273551
user273551

Reputation: 115

php notification

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

Answers (1)

Justin Ethier
Justin Ethier

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

Related Questions