I am using Angular 5.0 and the FPDF Library (www.fpdf.org) for creating PDF documents in PHP code.
I have used this library in JavaScript with no problems, however with Angular, which the marketing people say is a superset of JavaScript, the PHP code I create to format a PDF produces nothing.
I can run this PHP code directly from the browser, and it works perfectly, so there is nothing wrong with the PHP.
I have even tried calling the PDF formatter from another PHP (include 'test_pdf.php') and it does not work. It seems to know that it is being called from Angular, and will not allow the FPDF Library to do it's work.
How do I pass a parameter to, and call the PHP code which uses the FPDF Library?
Thanks for your assistance.