Example #1
0
 function getLocation($locID)
 {
     $loc = new LocationAddress();
     $loc->selectRecord($locID);
     if (!($domDoc = $loc->getDomDocument())) {
         return false;
     } else {
         $xmlStr = $domDoc->dump_mem(true);
         return $xmlStr;
     }
 }