php - Call stored procedure postgresql -


how possible call stored procedure in postgres php?

i'm trying don't work

$result= pg_query($conect, select name_function()); 

$result= pg_query($conect, "select name_function();"); 

you need pass string query..


Comments