Help for this page

Select Code to Download


  1. or download this
    sub ServerData {     //(package Get;
        $GSD_JSON = do {
    ...
        $GSD_Handle = JSON->new;
        return ($GSD_Handle->decode($GSD_JSON));
        }
    
  2. or download this
    sub ServerData {     //(package Get;
        $GSD_JSON = do {
    ...
        $GSD_Handle = JSON->new;
        return (%{$GSD_Handle->decode($GSD_JSON)});
        }
    
  3. or download this
    sub ServerData {     //package Update;
    %USD_In = %_;
    ...
        print BUFFER encode_json(%USD_In);
        close (BUFFER);
        }