tags:

views:

364

answers:

1

I am trying to call a piece of PHP code from my JSP Page. How do I do that? I normally use servlets but I need this PHP code for creating a particular report since it sorts the table fields dynamically which I am unable to do with my servlet. Please help!

+1  A: 

you could call PHP via command execution (exec() ?) from JSP and let JSP handle the output of PHP...

dusoft