Help for this page

Select Code to Download


  1. or download this
    # Automatically start a webbrowser to http://localhost:$CFG{'MYPORT'}
    if($0 =~/.exe$/i){
        system("start","http://localhost:$CFG{'MYPORT'}");
    }
    
  2. or download this
    if ($^O eq 'MSWin32') {
        system("start","http://localhost:$CFG{'MYPORT'}");
    }