Morning RVK and everyone.
Many thanks again. Here is one if the questions I want to ask and I think I should call it a day from there.
Now I have mastered that tut for console now let's say I want to have it in GUI where I would have text boxes, buttons and the likes. Now I want the user to enter say email from a textbox.
Now here is what I did, don't know if I did it correctly. Just want to be very sure.
code looks like this:
program sendinfos
uses httpsend,windows,winsock;
UrlData: string;
Url: string;
Email : string;
Data: TMemoryStream;
begin
Email := email.text;
UrlData := 'Firstname=darwin&email=+ Email +&phone=1423652340';
Url := 'http://localhost/infos/information.php';
Data := TMemoryStream.Create;
HttpPostURL(Url, UrlData, Data) ;
showmessage('Success');
end.