[GIS] GEOSERVER and Php

geoserverPHP

I want to use a Php script to retrieve information from the .db file of a shapefile saved as a layer in Geoserver. I need to retrieve attribute data from the layer and present it at the client side.

Is this possible with the functionality provided by the geoserver?

Best Answer

yes it is very possible and called web feature service, you can make wfs requests to geoserver with curl library and pass that information to your client. data from geoserver is served as GML,JSON etc. you need to parse this information

Related Question