Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Calling PHP from JSP/Java

Status
Not open for further replies.

rk68

Programmer
Jul 15, 2003
171
IN
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?

TIA
Raj
 
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.



--------------------------------------------------
Free Database Connection Pooling Software
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top