tags:

views:

76

answers:

2

Here:

http://freshmeat.net/projects/myperl/

I need to enable PHP in MySQL

A: 

Most of the binary php distributions (Zend, ActiveState, xamp, wamp etc. etc.) come complete with mysql enabled.

The "pdo" interface (a common interface that supports several DBs much like perl's DBI) is recommend.

James Anderson
Did you click through the OP's link? I don't think this is what they are asking about. I think it's more along the lines of keeping PHP code inside of MySQL records...
AJ
+2  A: 

David Sklar has made a MySQL UDF that interprets PHP code. In the last example, he runs PHP code that was stored in a database table.

See http://www.sklar.com/page/article/myphp

Disclaimer: I haven't actually tried the module.

André Paramés