Ver Mensaje Individual
  #5  
Antiguo 26-02-2020
Avatar de look
look look is offline
Miembro
 
Registrado: sep 2007
Ubicación: The Shire
Posts: 656
Reputación: 17
look Va camino a la fama
Cita:
Empezado por Soa Pelaez Ver Mensaje
Muchas gracias, probaré lo que me adjuntaste y tratare de hacerlo con lo que me dices al final THTTPClient .
Código Delphi [-]
function GetJSON(test: string): string;
var
  lHTTP: TIdHTTP;
  lParamList: TStringList;
begin

  lParamList := TStringList.Create;
  lParamList.Add('dummy='+test);

  lHTTP := TIdHTTP.Create;
  try
    Result := lHTTP.Post('http://........./root/demo/GetJSON.php' , lParamList);
  finally
    lHTTP.Free;
    lParamList.Free;
  end;

end;
__________________
all your base are belong to us
Responder Con Cita