<?php

$str  = "-638,-663,28 + 180,-60,50 + 838,-473,22 + 21,230,11 + 35,162,28 + 88,-33,22 + -346,632,22";
$coords = explode("+", $str);

echo "<map id=\"imgmap20122911656\" name=\"imgmap20122911656\">\n";
foreach($coords as $coord){ 
       echo "<area shape=\"circle\" alt=\"\" title=\"\" coords=\"".trim($coord)."\" href=\"\" target=\"\" />\n";
    
    }
 echo "<!-- Created by Online Image Map Editor (http://w...content-available-to-author-only...k.hu/imagemap/index) --></map>\n";   

?>