Thread: php postgresql

php postgresql

From
Mary Adel
Date:
I am wondering how i can call stored procedure from php
If anyone can help it would great for me

Thanks
Mary


Re: php postgresql

From
Russell Smith
Date:
Mary Adel wrote:
> I am wondering how i can call stored procedure from php
> If anyone can help it would great for me
>
Very small code snippet.

$sql = "SELECT my_func('para')";
$Result = pg_query($sql);
...

Regards

Russell Smith