Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am a student at university and I want to get in touch with web development. But I don't know which language I should learn. I have a strong C++ and Java background.

I tried JavaEE but it's difficult to host JavaEE Projects. Almost all server hosters run PHP, (python, perl). I would like to start with PHP.

The Question is : Should i start learning PHP?

The Pros:

  • most Ajax examples work with PHP
  • server hosting

But I am afraid to start learning it, because it is considered harmful. at least its [ed.: by some] considered to be horrible.

Should I learn something else?

share|improve this question
12  
PHP has such a stigma for some reason. I believe those reasons are the exact same that every language is considered harmful. People don't know how to use them properly and securely and they shoot themselves in the foot. – snicker Oct 28 '09 at 17:04
2  
Regarding your edit: there will always be people who consider any programming language "horrible". There are also plenty of people who think otherwise. There are also those that would say that a horrible language isn't the worst thing in the world: codinghorror.com/blog/archives/001119.html – ceejayoz Oct 28 '09 at 17:14
1  
most AJAX examples work with whatever server environment you're running as long as you've coded it properly. The only thing I can think of causing problems is ASP.NET wrapping JSON data in .d. I use ajax get/post, and json get on my PHP site with no problems. – Jim Schubert Oct 28 '09 at 18:09
4  
A knife is considered harmful too. And it has been used to do horrible things. But if you use it well you can do wonderful things with it. – koen Oct 28 '09 at 18:41
2  
Some knives are easier to cut yourself with than others though... – Svish Oct 28 '09 at 21:12
show 3 more comments

closed as not constructive by Wesley Murch, Michael Berkowski, leepowers, evilone, InfantPro'Aravind' Dec 11 '12 at 6:38

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

29 Answers

up vote 29 down vote accepted

PHP, Python,Ruby, and ASP are all fine choices for a server side environment, it's really up to personal preference.

And if you want to get started in web development, I'd recommend getting a good solid understanding of HTML and CSS first.

share|improve this answer
3  
So true. You can be great at any server-side code, and still suck at web development without html and css (I'd add javascript to that list as well) – Gordon Tucker Oct 28 '09 at 17:06
1  
good point. Getting a good foundation in JavaScript is a necessary skill to have as well for a web developer. – GSto Oct 28 '09 at 17:18
I've been stuck with just HTML/CSS for years now until a few months ago and I started trying PHP. I agree, the fundamentals of web development are essential. I have yet to try ASP but it seems like it is pretty solid. Just take the time to try each one for a bit and see which one you like best. – Nate Shoffner Oct 28 '09 at 17:35
3  
I would just knock ASP off that list. I don't see it as something worth knowing going forward because it has some serious limitations and MS has superseded it with .NET. – Tom Oct 28 '09 at 18:07
1  
all these comments are exactly why I didn't specify a preference for a language. Everyone has their own opinion about it. There are pros and cons to any of the language choices I mentioned. – GSto Oct 29 '09 at 20:02
show 6 more comments

PHP can be a fine choice. I have developed code in C, Java, Perl, a bit of Python and Ruby, and many other languages. PHP is easy to learn, it's widely available, and jobs programming in PHP are easier to find.

If PHP is harmful, it's because it's too easy for people with no training in software engineering to learn. They are then able to deploy code with poor structure, poor performance, and security issues. And they are able to do so rapidly and in great numbers. Is that the fault of the language? I don't think so.

If you want to avoid being one of these people, then don't just study a programming language. Like any field, there are a lot of complementary skills that you need to have competence in:

If you have good understanding of fundamentals like these, the choice of one programming language over another is of less importance.

share|improve this answer
4  
I'd like to see this answer at the top! – vmarquez Oct 29 '09 at 2:13
I agree @vmarquez.. this is the best answer – Derek Organ Feb 11 '10 at 18:03

but i am afraid to start learning it, because it is considered harmful.

[citation needed]

You can do dumb stuff in PHP, just like in any other language. You can do brilliant stuff in PHP, just like in any other language. If you want to learn PHP, do so - it's a useful, commonly used language that can serve you well as a career if you become good at it.

share|improve this answer
4  
I'd like to diss PHP as much as the next Perl guy, but ceejayoz is 100% right. Some languages are indeed harmful (original BASIC anyone?) but very few actually are - only people programming them can be harmful. – DVK Oct 28 '09 at 17:07
1  
BAIC might be an apt comparison, since it's the only language other than PHP that I'm aware of that has an easy way to say "quietly ignore any errors in this and proceed". The only difference is that in PHP, it's even easier than it ever was in BASIC - it's a single-character operator @... ~ – Pavel Minaev Oct 28 '09 at 17:55

With respect to web development I think is easier to think in terms of stacks.

The clear stacks IMO are:

  • C# / Asp.net / IIS / Windows
  • Java/J2EE/Apache/Solaris
  • PHP (or Python) / Apache / Linux
  • Ruby / lighttpd / Linux

Any of those stacks will help you to develop a successful web app. And each one has its own strengths.

When selecting the stack you must consider that with it comes a 'culture'. So which one to select? The one where you have most experience with. Since you mention you have a strong C++ experience you will feel pretty ok with PHP.

share|improve this answer
Strong C++ experience probably does help with PHP. But the OP also has strong Java experience. I'd suggest Java and C# will also feel equally OK. +1 for stacks though. – MarkJ Oct 28 '09 at 18:06
@MarkJ correct. Although it is useful to remember that OOP in PHP is heavily influenced by Java. This comes from a collaboration agreement that Zend and Sun had a few years ago (before php5). And is easy to see from the scripting languages (perl, python, ruby) PHP's object model is the most similar to Java's – elviejo Oct 29 '09 at 3:44

I wouldn't recommend PHP as a first language, as it can easily lead to too many bad habits. However, in the hands of an experienced developer it's a productive tool. Now, if you have a strong C++ background then you will probably be more aware of the weaknesses of PHP and thus, hopefully, will not be drawn into those bad habits. It will give you a good introduction to web-development, as it's ubiquitous and easy to get going with.

However, as an ex-PHP developer, I can honestly say there is a lot about PHP as language that is quite horrible! Be aware of that, and you will be OK.

share|improve this answer
2  
+1. I dabble in PHP and I like it, honestly I do. But there are some things that are just awful (library function naming "conventions" anyone?) – MarkJ Oct 28 '09 at 18:13
@MarkJ: PHP seems to be moving away from a lot of those now (e.g. with new database and XML classes). However, any failing in the library naming conventions is greatly counter-balanced by the fantastic documentation. – DisgruntledGoat Oct 29 '09 at 14:20

Just to throw in my two cents, I actually do PHP development for a living, every day, in a real brick-and-mortar shop (as I'm sure many do, but this is important).

First, it is absolutely fundamental to have a good HTML/CSS/JavaScript foundation that should include an understanding of browser differences, box model, AJAX from the client side (And therefore the concurrency-with-a-twist that is asynchronous web requests), and Document Object Model. Of course, there's no reason you can't learn all this concurrently as your learn PHP, but you must learn it or you will suck.

Now, if your C/C++ background is strong, PHP will be an absolute cake walk -- there will be almost no learning curve (syntactically; semantics is another deal, of course), you will recognize where PHP's weaknesses are, and recognize that they are mostly technique-based; being smart, keeping your head about you, and keeping your goals first and foremost will help. Do a bit of research on the history of PHP and why register_globals was a horrible idea, so you don't repeat the mistake and write something like this:

foreach ($_POST as $pkey => $pval)
    $$pkey = $pval; // DO NOT EVER DO THIS FOR THE LOVE OF ALL THAT IS HOLY

If you write good code, it will show no matter what language you use (except for original BASIC, of course). Always remember, to avoid bad habits, pretend that the next person who will maintain your code is a psychotic, murderous PHP wizard who knows where you live. This will keep you using BCP and not just copy/pasting the same horrible code everywhere, which will in turn make your own life (maintenance-wise) much more productive and enjoyable.

Finally, please ignore the massive naming inconsistencies, there are reasons for this that will become clear if you read up on PHP history (esp. versions 1-3); they may not be good reasons, but they are reasons. Also, Unicode can be a big "Gotcha!" when writing PHP web apps -- if there is any chance anything other than good old single-byte ASCII-compatible characters will be coming through, double-and-triple-reinforce your app for this.

share|improve this answer
Love the code comment. Heh. – ceejayoz Oct 28 '09 at 18:16
Can you translate the code above so all of us non-PHP programmers can enjoy? :) – Juliet Oct 28 '09 at 21:09
1  
Your comment is right, you should use extract($_POST) instead :p – DisgruntledGoat Oct 29 '09 at 14:24
The code I posted takes all key/value combos in the $_POST array (populated from, you guessed it, POSTDATA), and creates them in the current scope. The biggest security risk, of course, is that they will prepopulate something important, for example if your code does a check to see if a user is an admin, then sets $admin = true, and later checks to see if $admin == true, then all they'd need to do is send "&admin=1" in POSTDATA and they have beaten your (terrible) security. @Goat: true, but I've never met someone who knew both the extract function and the perils of register_globals. – Dereleased Oct 29 '09 at 17:51
This article - phpdeveloping.co.za/security/register_globals-evilness.html - might further clarify the issue. – James Skemp Aug 29 '10 at 15:01

I say yes. I just started learning it a few months ago. I instantly fell in love with it. Even the simplest things such as Include() make editing multiple pages easy. It's a very common language now days and there is a lot that you can do with it. Sure you can do "harmful" stuff, but that goes for just about any programming language. Give it a try, you'll like it. ;)

share|improve this answer

I think you should put emphasis on learning, rather than the tools you use to learn. If you're a smart dude then you won't only know PHP, you'll be a language polyglot.

Gotta start somewhere though, and if PHP is the easiest road, then I suggest you take it. Just don't get bogged down and think that the PHP way is the One True Way.

share|improve this answer

Humorous answer: No. I'd suggest using Python (and Django).. or Ruby (with Ruby on Rails)

Seriously: PHP is okay for smaller things. The one great advantage is that it's installed everywhere. The disadvantage is that it's configured differently everywhere, and behaviour changes over version changes sometimes.

share|improve this answer
3  
'smaller things'? .. some of the biggest websites out there is done in PHP .. Facebook for example. – Derek Organ Oct 28 '09 at 17:13
1  
You're right, i might be biased by the amount of really bad code i see on a daily basis. But still, if you plan for something big, I wouldn't use PHP, for the reasons mentioned. And even the Facebook guys say it's not very comfortable at their size (and they're using way more technologies than just PHP) – Dave Vogt Oct 28 '09 at 17:33
7  
Is anything particularly comfortable at Facebook's size? – ceejayoz Oct 28 '09 at 18:16

If you want to be a web developer you're going to have to learn many languages. You're not always going to be hired to build a brand new project from the ground up.

share|improve this answer

On the topic of PHP being harmful:

The language itself isn't harmful, it just has a very low learning curve and as such comes a plethora of bad developers that misuse and abuse it. You have to be wary of tutorials and articles as a high number of them are not coded using best practices or with security in mind. It's up to you as the developer to handle such things, plug security holes, etc.

share|improve this answer
This is completely biased- there are a lot of way to make a living as a programmer that do not involve the ms stack – Dan Oct 28 '09 at 17:05
I work almost exclusively in LAMP for a Fortune 500 company. The MS stack isn't the corporate powerhouse it used to be - open source is making quite a bit of headway. – ceejayoz Oct 28 '09 at 17:08
I constantly hear that it has a low learning curve. This is not true, I'd say it has a very high learning curve because it has a very low barrier of entry, meaning that you can generally start churning out low-grade mush and weapons-grade stupidity on day one. Because it seems so easy, a great many PHP Users (not PHP Developers, mind you) don't ever learn how to do things like use BCP, handle Exceptions, manage security risks, and so on. These same people decide they are experts and go on to write tutorials, teaching others to be just as mediocre as they are. – Dereleased Oct 29 '09 at 17:58

IMO a not very known but terminal weakness of PHP is this :

  • to build modern, dynamic websites, you need powerful frameworks
  • to build a powerful framework, you need good generic programming facilities : a good object model, reflection, functional programming, closures, first class classes, etc, and also basic things like named function arguments, variable number of arguments, etc, all of this in an easy to use and friendly package, a good example is Python.

However PHP lacks severely in all these fields :

  • the object model is atrocious, classes are not objects, static methods don't work
  • reflection is awkward and not easy to use
  • no functional programming whatsoever
  • function argument passing is very C-like and inflexible

I can put up with all the low level crap like 'a' == 0 but this is really annoying.

share|improve this answer

I think a good programmer can create a good system in most of main stream technologies.

The question is what you hope to get out of it.

I think the main 4 options are

  1. .NET/ C# -

Advantages:

C# is a very nice language and easy to learn if you know Java Tend to be the best paid developers

Disadvantage: Windows hosting can cost more for licences etc.

  1. LAMP e.g. PHP

Advantages:

It is the most popular language out there.. loads of support and libraries Very web orientated. Open source and mostly cheap hosting

Disadvantages:

Lots of bad programmers/ bad habits in the way people code PHP (frameworks can help) More competition to get lower paid jobs

  1. RoR - Ruby / Django -python

Advantages: Very nice but different language to what you would be used to. (a good thing.. widens you knowledge base) RoRScaffolding and code allow you to build prototypes very quickly Python -Google uses it in a big way

Disadvantages not as big a community... libraries etc. ...

Point is.. I think you can have a pretty successful career in any of these. Personally if i was you I'd pick .NET.. more money in it but i'd defo learn one of the other ones at some point too.

share|improve this answer

I had to forcefully learn PHP as I was going to host an application in a company that would only run PHP applications. It was useful to learn it, but you have to keep in mind that PHP is a language that makes easier to write bad code - so you have to take care to maintain things properly and to write good code.

share|improve this answer

You should try PHP to feel yourself if it's bad or not. A lot of people complain about PHP because it doesn't stay in your way when you want to do a lot of bad practices - it doesn't mean you can't code "correctly" with it.

And since you said web development, don't just look for the language itself, look for solutions people created using PHP. I work with a lot of CMSs and they are mainly written in PHP. Do you plan to work in these kind of solutions? This is a factor to consider.

share|improve this answer

PHP is OK for web-only development. It has its detractors and its supporters. AFAIK, it's not used much in corporate environment, but it's a personal impression, I welcom someone to correct me.

Perl is great for web development, and the benefit is that you can use it outside of web development as well in your further programming career.

share|improve this answer
1  
PHP is used by Facebook, the White House, IBM, Sony, and many other corporate environments. – ceejayoz Oct 28 '09 at 17:11
2  
White House! The paragon of sound judgement! :) – DVK Oct 28 '09 at 17:53

PHP is not a very difficult language learn. If you have used c in your c++ work, the base libraries should be very familiar. If you take the good practices you hopefully have learned in java and try to apply them in PHP you will avoid most of its pitfalls. The biggest reason (IMO) that PHP has the bad name is that many new programmers hack together PHP monstrosities based on copy pasting code from various examples without having any grasp on good application design or security practices.

share|improve this answer

If you've already got a Java background, I'd suggest you stick with that stack for web development. You don't have to learn all JEE, but the basics of servlets and JSPs will get you pretty far, then you can start learning frameworks like Spring.

This is not to say that PHP is a bad choice, just that I think its best to build on what you already know, rather than have to start fresh with a brand-new language.

If its hosting you are worried about, look into Google App Engine, which now supports Java.

share|improve this answer

I say yes, It's Easy to learn and easier to deploy since you don't need to do anything on the server 99% of the time, unlike rails, python, java or ASP. And it's completely free.

And from my own personal experience, I'm in the UK and I've been developing websites for 9 years now; I've never met another developer in the wild (as in, actually spoken to face to face) who uses anything else for server side stuff, nor have I seen any other server side language specified on any of the job vacancies I get sent. And I work primarily for the "big corporate clients" that people always go on about, so I don't really understand the notion that open source isn't popular in the enterprise environment.

I'm not saying people in the UK don't use other languages, they clearly do, but PHP seems to be the weapon of choice from where I'm sitting.

share|improve this answer

I started web development with PHP (with very little programming experience). If I could do it all over again, Python would be my language of choice, then PHP.

Your situation is different. You have experience in Java/C++ so OOP is nothing new. Yes, you should learn PHP. Consider learning Python on the side, or vice versa.

share|improve this answer

If you know C++ and Java, picking up the basics of PHP should take you about an hour, and thanks to the extensive online documentation, it's a skill you'll always have with you as long as you have an Internet connection. That alone will get you started in Web development. If you plan to stick with it you might want to dive into one of the other platforms later (although maybe not; some of the most heavily-used software in the world runs on PHP).

share|improve this answer

If you are a competent programmer, you will be a competent programmer in PHP. If you are an incompetent programmer, you will be incompetent in any language. As you are strong in Java and C++, you will be strong in PHP - a language can't force you to code badly.

Even old versions of BASIC that only supported GOTO with line numbers for control flow didn't actually force anybody to produce spaghetti code; I know, because I used them in the 1970s, and my spaghetti code was due to me not knowing what I was doing back then ;-)

share|improve this answer

You should certainly know it, not least because there's a wealth of code out there which uses it and this can be a major advantage when assembling the code for a project (who writes everything from scratch nowadays?). And if you already code C++ and Java reasonably well you're pretty much innoculated to the badness of PHP already.

I pretty often make my language choice based on what utilities are available in what language for reuse in a particular project. Any reasonably competent coder should be able to get to a 'comfortable' stage with most languages pretty quickly. Expertese takes longer and much practice of course, but for many projects 'comfortable' is just fine.

share|improve this answer

if you want to go into web development learn it, not because it is the best or better then language x, but because you cant get around php if you do web development. the day will come where a client wants you to add some new feature to his existing web application, and chances are good that this application is written in php.

learn php, but as soon as you think you understood php and the general concepts of web development learn a second language (but dont stop learning php!), so you can choose yourself if php is the devil or not. :)

oh and dont forget to check out jQuery!

share|improve this answer

You have a strong background in C++ and Java, so picking up new languages should not be a problem for you. I would say go ahead and learn PHP. It is widely used, and is typically the language of web content management systems.

Python is another good one worth learning. Very dynamic compared to C++, and useful in a ton of situations such as web and admin work. It is also used by several very nice web stacks such as Django, TurboGears, Pylons, and others. Actually, my favourite language to code in, and I have used many starting with several assemblers, C, C++, Java, etc. etc.

I think with your background you will pick up either or both languages quickly.

Best of Luck.

share|improve this answer

Go a head with php but make sure you use a Framework ...

share|improve this answer

Pick the language that's hottest in your area. Hit Dice, search for PHP, Ruby, C#, VB.Net, Python, Java, etc and compare #'s. Sure, PHP isn't perfect, but it's very popular and in most markets, easy to land a job. Sure, PHP gets a bad rap, but who cares if Ruby or Python are "better" languages if you can't land a job writing in them?

share|improve this answer

PHP is better I think for several reason

  • PHP is simple than JAVA
  • Less code when compared with Java.
  • PHP hosting services are cheap and available in abunance.
  • Easily works with AJAX,HTMl,JS.
  • Can use content management systems(CMS) like Joomla, Drupal... for easy development.
  • Framework such as Zend are available.
  • There are plenty of PHP users you can get help from.
share|improve this answer
Being simpler than java also means is not as powerful as java. Easily workgs with AJAX, HTML, JS can also be applied to java, python, ruby... Frameworks as Zend are not as powerful as other like SpringMVC (java) or Django (python). Having a big base of users is not something exclusive from php, Java, python or ruby have also huge user base. – Juan Antonio Gomez Moriano Mar 7 at 3:33

Why not start with RoR?

by 'sophisticated' I meant that it does not stand for spaghetti code. In rails, the code will be better encapsulated, standards will be well defined, you can do a lot with less lines of code.

In the end, good code vs. bad code always depends on the person writing the code. At least in the case of Rails or any convention over configuration framework it is hard to write spaghetti code.

share|improve this answer
More sophisticated is a pretty subjective statement to make. – ceejayoz Oct 28 '09 at 17:11
I'd say that is pretty objective when compared to "vanilla" PHP. – Dan Diplo Oct 28 '09 at 17:17
1  
You'd need to start by explaining what makes a programming language "sophisticated". – ceejayoz Oct 28 '09 at 17:20
3  
Smoking cigarettes is sophisticated. That doesn't make it good for you. – Spike Williams Oct 28 '09 at 17:46
>_< sophisticated explained! – Omnipresent Oct 28 '09 at 18:04

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