Is there anyway invoke a PHP page / function when a record being inserted in to the mysql db table. We dont have control over the record insertion procedure.Is there some thing called trigger which can call a PHP script back ?
|
|
The trigger is executed on the SQL server, not on the PHP one (even if those are both on the same machine). So, I would say this is not quite possible -- at least not simply.
So, there might be a waty, actually, via an UDF function that would launch the php executable/script ; not that easy, but seems possible ;-) |
||||
|
|
|
If you have transaction logs in you MySQL, you can create a trigger for purpose of a log instance creation. A cronjob could monitor this log and based on events created by your trigger it could invoke a php script. That is if you absolutely have no control over you insertion. |
||
|
|
|
|
I found this: http://forums.mysql.com/read.php?99,170973,257815#msg-257815
|
||
|
|
|
|
That should be considered a very bad programming practice to call PHP code from a database trigger. If you will explain the task you are trying to solve using such "mad" tricks, we might provide a satisfying solution. |
||
|
|
