This is the final part of the article about using FastReport.Net in conjunction with a PHP application.
In previous articles, we looked at the way to create a server part on ASP.Net Core. Let me remind you that it allows you to get a report display, a report designer display with a report loaded into it for editing, to download reports in a given format.
Now we have to implement a php application. To do this, you must have a web server installed, for example, Apache and PHP installed on it.
We will not consider the principles of creating php applications as part of this article.
Let's just decide on the structure of the pages. We need 3 web page templates:
• Home - displays a web report;
• Designer - displays the report designer;
• Downloads - button to download the report.
Each page will have the same title with the menu. Therefore, it makes sense to put it in a separate file - header.php. Let's create it in the ...