user1546
user1546

Reputation: 13

mysql user defined function - How to in PHP

How to create mysql user defined function with PHP, is that straight away passing whole create mysql UDF code in mysql_query function ?

Is there any php library or easy way to play with such things ?

Upvotes: 1

Views: 524

Answers (1)

Dan Grossman
Dan Grossman

Reputation: 52372

It's just a query like any other. Send it with mysql_query.

Upvotes: 4

Related Questions