tags:

views:

129

answers:

1
+1  Q: 

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?

+2  A: 

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.

Justin Ethier