I'm new to postgresql and i'd like to access a table named Paths located in the schemas as shown in this image :
https://i.sstatic.net/M6aTn.jpg
in pgadmin this request works :
select * from "Schemas"."Paths"
but i can't make it work in php.
i've tried this so far :
pg_prepare($connection, "my_query", "Select * from \"Schemas\".\"Paths\"");
pg_execute($connection,"my_query");
but it didn't work...
Edit: I don't have an error i just get NULL when i try :
var_dump(pg_fetch_array(pg_execute($connection,"my_query")));