<?php
    if(PHP_OS == "WINNT" || PHP_OS == "WIN32"){
        $dlext = "dll";
    }else{
        $dlext = "so";
    }

    if(!extension_loaded("Mapscript")){
        dl("php_mapscript.$dlext");
    }

    $map_path = "C:/ms4w/Apache/htdocs/Latihan/map/Riau.map"
    $map = ms_newMapObj($map_path);
    $image = $map->draw();
    $image_url = $image->saveWebImage();
?>

Missing semi-colon on line 12.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.