Registriert seit: 24. Mär 2004
Ort: bei Hannover
2.416 Beiträge
Delphi XE5 Professional
|
Re: IdHTTP, probleme mit Post...
2. Aug 2006, 17:39
ich habe es wie folgt gelöst:
das php programm:
Code:
<?php
var_dump($_REQUEST);
?>
der delphi teil:
Delphi-Quellcode:
var
daten: TIdMultiPartFormDataStream;
begin
daten:=TIdMultiPartFormDataStream.Create;
try
daten.AddFormField(' testa', ' test1');
daten.AddFormField(' testb', ' test2');
daten.AddFormField(' testc', ' test3');
IdHTTP1.Request.ContentType := ' application/x-www-form-urlencoded';
Memo1.lines.text:=IdHTTP1.Post(' http://localhost:3000/phpteil.php', daten);
finally
daten.free;
end;
end;
|