Tag: web

  • How can I make web application in Delphi (Part1)

    Delphi is a programming language and software development kit (SDK) for building Windows, macOS, Android, and iOS applications. You can use Delphi to create a web application by using one of the following approaches Create a web server application using the Internet Direct (Indy) library Indy is a third-party library for Delphi that provides support…

  • How do I make http post in Delphi FMX

    To make an HTTP POST request in Delphi FMX (FireMonkey), you can use the THTTPClient class from the System.Net.HttpClient unit. Here is an example of how you can use THTTPClient to make an HTTP POST request: First, include the System.Net.HttpClient unit in your code by adding the following line at the top of your program:…