vote up -4 vote down star

Duplicate:

What language is a good choice after PHP for a developer wanting to try something new?

what language to program a site with?

PHP or Python?

What language/platform to choose for a new web application?

I have learned PHP (not so well) for a year, but I'm already a Windows .NET programmer. Now I'm wondering what is the best platform to create my next web application on. I think I should go with PHP as many open source projects are built on PHP, however, I'll need time to convert my skill to PHP.

The next solution is ASP.net, python or ruby on rails. My friend says ruby on rails and Google prefer Python.

So I really don't know which one and I have spent a month wondering which one to choose because I don't want to regret it.

flag

51% accept rate
Duplicate: stackoverflow.com/questions/441586/…, stackoverflow.com/questions/411718/…, stackoverflow.com/questions/323066/…, etc. – S.Lott Mar 6 at 21:09
dupe: stackoverflow.com/questions/231902/… – John Ellinwood Mar 6 at 21:09
1  
Duplicate: stackoverflow.com/questions/tagged/… lists all the questions just like this one. – S.Lott Mar 6 at 21:10
Not to mention that asking for the "best" is asking for subjective argumentation. – David Thornley Mar 6 at 21:30

closed as exact duplicate by Rich B, S.Lott, Greg, Quintin Robinson, David Thornley Mar 6 at 21:30

3 Answers

vote up 0 vote down

The problem with this is there are literally hundreds of languages, with various different flavours. It really depends on your programming style, your relative proficiency in the language and how much effort you're willing to put in to learn something new.

Additionally it would be wise to look into what your hosting company supports, including down to the version number information.

link|flag
vote up 1 vote down

The best platform is the one that you have the most experience with.

Besides, web applications is a very broad term. It's like what is the best car? It depends -- off-road, racing, family, etc?

Be more specific if you want to get a useful answer.

link|flag
vote up 1 vote down

PHP is a good platform if you do things right. Its very easy to make bad code in PHP but if you are going to program in PHP i recommend you start with this setting

error_reporting(E_ALL | E_STRICT);

This will at least help you write better PHP code.

Also you can create things in PHP pretty quickly, and PHP is often used as a Prototype for a system that is later going to be built in some other language.

link|flag

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