Thema: Delphi idhttp.post problem

Einzelnen Beitrag anzeigen

ixtreme
(Gast)

n/a Beiträge
 
#1

idhttp.post problem

  Alt 21. Nov 2003, 20:35
Weiß jemand was hier nicht stimmt? Bekomme immer Fehlermeldung Connecten Closed Gracefully!

Code:
data := TIdMultiPartFormDataStream.Create;
  try
    { add the used parameters for the script }
    data.AddFormField('autor', 'value1');
    data.AddFormField('topic', 'value2');
    data.AddFormField('cat', 'vcl');
    data.AddFormField('id', 'value3');

    { Call the Post method of TIdHTTP and read the result into TMemo }
   idhttp1.Post('http://www.ixtreme.de/data/data.php', data);
  finally
    data.Free;
  end;
  Mit Zitat antworten Zitat