How do I use the MapServer()
functions inside the Zend controller?
I'm using MS4W which has Apache, PHP and MapServer.
If it were straight, it would look something like this:
<?php
$mapserver = MapServer();
$obj = $mapserver -> ms_newMapObj();
$obj -> draw();
$obj -> saveImage("mapa-exemplo" , "gif");
?>