trigger a php script from postgresql

Questions about the MySQL, PostgreSQL, and most other databases, as well as using it with PHP can be asked here.

Moderator: General Moderators

Post Reply
phpfreak
Forum Commoner
Posts: 30
Joined: Fri Mar 21, 2003 10:28 am
Location: New Jersey,USA
Contact:

trigger a php script from postgresql

Post by phpfreak »

I want to trigger an .php script from a postgresql trigger something like
CREATE TRIGGER mytrigger
BEFORE INSERT OR UPDATE ON films FOR EACH ROW
EXECUTE PROCEDURE ('something.php');

any suggestions would be awesome.

thanks in advance
User avatar
markl999
DevNet Resident
Posts: 1972
Joined: Thu Oct 16, 2003 5:49 pm
Location: Manchester (UK)

Post by markl999 »

Not sure if plPHP is any use to you.
Post Reply