<?php $dbconn = pg_connect("host=localhost port=5432 dbname=postgismethane user=root password=excedrin413");
$query = "SELECT * FROM polygons WHERE gid = 1"; $result = pg_exec($dbconn, $query); if (!$result) {printf ("ERROR"); exit;} $numrows = pg_numrows($result); ?> I get one row returned but I just don't seem to have any kind of documentation on what to do with it. I want to list the coordinates of the polygon returned by my query. Does anyone know how to do that? Thank you, Eric S.
_______________________________________________ postgis-users mailing list postgis-users@postgis.refractions.net http://postgis.refractions.net/mailman/listinfo/postgis-users