Link to home
Start Free TrialLog in
Avatar of Eduardo Fuerte
Eduardo FuerteFlag for Brazil

asked on

Do you know a PHP report generation class (that uses templates) ?

Hi Experts!

Do you know a PHP report class  that could generate (or at least facilitate in some manner) the creation report templates like Crystal Reports does f.e. ?

Here na example of what I mean
User generated image
Thanks in advance!
Avatar of Jagadishwor Dulal
Jagadishwor Dulal
Flag of Nepal image

May be there is some other method but why don't you try to manage it in html page or better to save it as pdf file.
Avatar of Eduardo Fuerte

ASKER

Hello

In fact the result is a report with group divisions that is usually saved in PDF format.
But first some DB activity is needed.
(The print I post is a VFP example)
ASKER CERTIFIED SOLUTION
Avatar of Jagadishwor Dulal
Jagadishwor Dulal
Flag of Nepal image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
http://www.eclipse.org/birt/phoenix/

You design your report in Eclipse. Then upload it to your server (it must be running tomcat) I know. Then you can call that report from your php application you can send the parameters to the report through the query string:

/myreport.birt?param=var&param2=var2

Here you have the project, its a symfony 1.4 plugin: https://github.com/juanmf/sfPlugins/tree/master/reportPlugin

Have a look at siwapp.org, it is opensource invoicing application based on Symphony Framework, it is in early beta but very promising.
Thank you for the assistance and wishes.