Hi All,
I want to sent email on DB field changes.....Can any please let me know how can i do it in PHPmyAdmin.
Regards, Hemant
Hi All,
I want to sent email on DB field changes.....Can any please let me know how can i do it in PHPmyAdmin.
Regards, Hemant
phpMyAdmin is just a web administration frontend for MySQL. You could probably write a stored procedure and register it with a trigger which will send the notification of a row change.
In my opinion this should be done in your application logic rather than the database.
Also see http://stackoverflow.com/questions/387483/how-to-send-email-from-mysql-5-1