FastReport.Net was created specially for the .net platform. Accordingly, web reports work with ASP.Net and ASP.Net Core technologies.
But, still, most websites on the World Wide Web are written in PHP. And many would like to display FastReport reports in their php applications. As you know, this is possible thanks to the http protocol. We will just use the PHP application as the client part, and ASP.Net Core as the server part.
We will provide a report output, a report designer output and a report downloading in one of the two php and html formats (two formats will be enough as a demonstration).
Thus, in the php application there will be three pages: displaying the report, displaying the report designer, downloading the report.
Let's proceed with the implementation of the server side. The most suitable choice of technology is ASP.Net Core, as it is cross-platform, which means the application can run on a Linux server as well. According to statis ...