vote up 0 vote down star

I'm an amateur PHP programmer and want to know if I'm better served by going with the Zend Framework, or if I should learn ASP.NET MVC?

Which has better 'free' resources on the internet? Which would you recommend? What are your experiences with either?

flag
ASP.NET MVC is NOT event driven, but ASP.NET not-MVC is. – valya Nov 6 at 18:42
2  
Requires extended discussion. Voting to close. – George Stocker Nov 6 at 18:49
Excuse the nievity (sp?), but why does an opinionated/extended discussion need to be closed? I think questions like this make a lot of sense to ask and are within the context of the site. – Kevin Peno Nov 6 at 18:56
@Kevin Peno: From the ask a question page: "We prefer questions that can be answered, not just discussed." – George Stocker Nov 7 at 1:44

closed as subjective and argumentative by George Stocker, Stefan Gehrig, David Brown, Josh, ChssPly76 Nov 7 at 7:15

5 Answers

vote up 2 vote down check

I personally enjoy C# and MVC, but I'd answer your question with another question:

"What are your goals for the framework you choose?"

Both frameworks have their positives and negatives.

Several folks have listed the benies of MVC, so I'll play devil's advocate and say that you will find much, much more open source code on the PHP side. That may not be true forever, but it is true now.

If your goal is to maintain your amateur status, then I'd stick with PHP. You already work with it and know the basics. C# and MVC will have a longer learning curve for you (the opposite was true for me since I came from Java to C#). If you don't plan to make a career shift, then it doesn't really matter which you choose.

If your goal is to move into the "pro" world, the I'd say C# and MVC are great especially if you want to work in the IT field as opposed to a web start-up. As has been mentioned you can do more than just MVC with C#.

Neither of those assesments is an absolute. There are corporate gigs using PHP, just not as many. You can certainly do a web start-up with MVC.

As I said, if your goal is to remain an amateur and have fun, then pick whichever you think will lend you more fun and satisfaction. If building cool web sites cranks your engine, then stay PHP and build away. If learning a new way of coding is your cup of tea and C# sounds cool, go for it!

link|flag
vote up 6 vote down

You'll do your career a huge favor by learning C# and ASP.NET. (Note that C# isn't specific to ASP.NET - it can also be used to write Windows client apps and works quite well with the Mono framework).

It seems that more corporate/pro development is in ASP.NET and C#/VB.Net these days, and rightly so. It's a very powerful platform with a significantly improved approach to web development over PHP.

link|flag
1  
So true. After 7 years working as a PHP developer, I've been doing my best to add C#/.Net to my focus and it is already paying off (in some cases better than the entire 7 years in PHP). – Kevin Peno Nov 6 at 18:49
I would add to this that the tooling for ASP.NET and C# is much more vast than for PHP. – Ben Collins Nov 6 at 19:10
1  
Coding ASP.NET will catapult you as a developer because you can use the same programming language knowledge across all application types (web, mobile, console, windows), even reuse same classes and objects, and your code can interoperate with many other language (C#, Vb.net, IronPython, etc web.archive.org/web/20070810192346/… - basically anything else on the .NET Framework). You're really opening yourself up to facilitate many things quickly. – jdk Nov 6 at 19:26
The only disadvantage of C#/.NET is that it'S platform specific. You have to have Windows server to develop webpages in .NET. Your client has to have Windows to use your .NET desktop client, etc. If this is not your concern, then use C#/.NET, thats 100% x) – tomas.fejfar Nov 7 at 12:33
Mono opened up c# to the Linux world.there's even a .NET framework port for the Iphone now. Not windows-specific. Besides, I prefer to work for clients with money; those that balk at the cost of a windows box typically can't afford real developers anyway. – David Lively Nov 7 at 14:09
vote up 0 vote down

I would say C# asp.net MVC

There are plenty of sites that help beginners with examples like NerdDinner videos on the actual asp.net MVC site. I was able to do it with out purchasing a single book. Remember Google is your friend. :)

Edit: Plus there are a lot of other benefits to using c# ex. LinqToSql, EntityToSql, etc.

link|flag
vote up 4 vote down

If those are your two choices, I'd recommend the Zend Framework over .NET MVC. Either platform is going to force you to think about solving problems in a way that's very different from your "amateur PHP" approach, but if you go with Zend Framework you'll still be able to fall back on your existing PHP skills to get something done while you climb the OO learning curve. You'll also start to see ways you can take your amateur PHP code and come up with more efficient OO approaches.

ASP.NET MVC is a great platform, but you'll be climbing both the OO learning curve AND learning a new language (C#). When I'm leaning something new I always find it goes easier when I can concentrate on a single new thing.

link|flag
vote up 0 vote down

I would take a hard look at asp.net mvc and recommend it over the Zend framework.

Most of the major advantages have been listed in other answers but I'm excited for the sheer potential of asp.net mvc. Every release and preview that has come out has been an improvement and included great new features that the community has asked for. As .net 4.0, visual studio 2010, and version 2 of asp.net mvc come along I expect things to get better and better.

link|flag

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