I'm working on a website which is in JSP & published on TomCat Apache server. There are some pages, which is part of the above, that will be developed in PHP. Is it possible to call the PHP pages from JSP/Java. If yes, how can I do it?
JSP and PHP are just server side scripting languages to generate HTML ... so you "call" a URL in JSP the same way you call a URL in PHP, or HTML or ASP, or whatever - using a <form> tag, or javascript.
In JSP, you can also use a <jsp:forward="myURL"> tag.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.