$i+1) { $p = substr($worldlist,$i,2); if (isset($countrylist[$p])) { $p = $countrylist[$p]; array_shift($p); // get rid of the country name } while(count($p) >= 2) { $x = array_shift($p); $y = array_shift($p); imagefill($img,$x,$y,$c); } $i += 2; } $tcimg = imagecreatetruecolor(570,250); if (TRUE == imagecopyresampled($tcimg,$img,0,0,0,0,570,250,1425,625)) { header('Content-type: image/png'); imagepng($tcimg); } } ?>