I've recently became interested in web programming, more specifically, making games that run through the web browser.
Let's say the game is a turn-based mud (5 players per dungeon).. something relatively simple.
Would I be able to get away with using PHP and MySQL to handle delivery of content to players and even executing the game logic or would I be better off learning Java?
With Java, from what I understand, I'd be able to have the client code execute on the client's machine rather than on my server which is a huge plus for me. Another plus is the fact that it runs in a virtual machine so it *should* run the same regardless of browser architecture.
However, I'm being a lazy bastard and not wanting to learn Java (although that really wouldn't be a bad thing in the long run) but... I just don't want to do it right now.
The answer seems a bit obvious, and I really am leaning to biting the bullet and learning Java (shouldn't be overly difficult with C++ and C# under my belt) but is there any reason why maybe PHP might be the better path to take?
Thoughts? Suggestions?
Thanks
