Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
Some very complex environments (Google, Facebook, etc) do use a variety of languages in their stack. But in general it is not recommended to try to use many languages, since doing so will increase your maintenance costs - only do it if you really have to. Otherwise, stick to as few as you possibly can, and for 90% of organisations that means one primary scripting language. – halfer Jan 14 at 22:14
With the Java code, do you mean to write this as an applet served in a browser (just guessing on the basis you're doing game development)? That approach is being replaced by HTML5 these days, though Flash still seems to live on for the same purpose. – halfer Jan 14 at 22:15

closed as not a real question by Nambari, gefei, jeroen, artbristol, halfer Jan 14 at 22:12

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

My idea would be, stick to one language(Java since you are comfortable with it), one RDBMS(MySQL), one client side scripting language(JS), one HTML standard(HTML5).

That makes maintaining a webapp simpler than maintaining a webapplication written in multiple languages.

This way, if you grow super rich and you create your own software firm, maintaining your webapp would be much simpler for other people as well. And it will definitely save your resources because you wouldn't need, say, PHP or Perl or Python developers.

share|improve this answer

If you are familiar with Java, stick to it. Adding PHP to this mix is superficial and I see no was whatsoever that it could help.

Also - the bottleneck in any program is usually the connection to the database (baring some heavy clients side calculations), so PHP wouldn't help you very much.

I've used Java with databases a lot and despite knowing PHP better I don't know why you would consider combining the two.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.