I am working on a web application and I would like to have your suggestions to better organize my work.
Preface:
1) I am familiar with Java, php, JavaScript, MySQL, html, css. Before learn other programming languages or RDBMS, I would like to know which ones are more useful for my work.
2) The web applications will consist of simple web pages but also of an important and heavy part of programming (there will be a game engine).
My idea:
1) I would use php and javascript to create simple dynamic web pages and (php) to create simple connection to database (for example to login, and to show information saved in database in the web pages).
2) I would use java to program the heavy part of the application (essentially the game engine and other programs that will run for all user at the same datetime). As a consequence I will need to connect Java to MySQL.
I would underline that I want to use java for this part of the application because I am more confident with it than with php and because I have read that for heavy programs it has better performances.
My questions:
1) Is it proper to use different programming languages splitting the web application in different part to take advantage of each language peculiarity?
2) Is JDBC the better solution to connect MySQL and Java or I could use php as a channel between them (I think that the second it isn't a good solution but I would like to have your confirmation).
3) I have heard about other program languages like python and pearl that could be useful for my needs. Could one of them substitute both java and php and improve performance?
Thanks in advance!
Ikki
Edit:
I have specified better my questions to reopen it
