up vote 2 down vote favorite
share [g+] share [fb]

I consider myself as skilled programmer and know a large number of languages. Eg Fortran, C, Ruby, Python, PHP, VB, Obj-C, C# etc.

I want to build a fully featured piece of Web Based software that would have the following modules. 1. Calendaring System for managing bookings. 2. Record keeping and notes system to record details about each booking 3. Simple invoicing / point of sale system.

I know this is an open question, but what are some of your experiences here. I have so many options in ways I could tackle this.

Currently I am considering Symfony for PHP. But I love python so Django? I love Ruby but find rails quite hard to host and didnt find it very stable a few years ago, I don't think I would touch rails again (but ruby is cool). Not interested in Java though.

I would prefer to stay open source so I can scale this system easily as I need to provision more sites.

I have even considered just building my own framework to quickly make forms/components quickly, I have done this once and it was pretty neat.

This is not a fight between languages, frameworks.

Can you tell me.

  1. What high level tools would you use?
  2. Have I missed something here > another choice that could be quicker.
  3. Did you feel you could make some pretty cool stuff with your choice was it easy.

Cheers, John.

link|improve this question

1  
The answer to the "Which technology should I use" question is always either "use what you're getting paid to use" or "use what you're most comfortable with". Don't write a web app in Fortran. – Seth Sep 4 '10 at 0:34
Shouldn't this be a Community Wiki? – vlad003 Sep 4 '10 at 0:42
Seth: What a bout QuickBasic? – Skurmedel Sep 4 '10 at 0:42
2  
While we're on the topic, what's the best language to write a murder mystery novel in? – Chuck Sep 4 '10 at 0:46
3  
@Chuck - Surely murder mysteries are best written in Scheme? – Slomojo Sep 4 '10 at 0:49
show 3 more comments
feedback

closed as not constructive by Andy E, Glenn Maynard, Seth, Chuck, David Thomas Sep 4 '10 at 0:51

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

4 Answers

up vote 1 down vote accepted

Personally, I am a fan of PHP. The syntax is clear and consistent, there is a huge collection of native functions specifically for HTML, and it is very easy to use. Also, PHP distributions (usually) come shipped with a lot of components that are used in large scale web apps; JSON, image manipulation, CSV, lots of data formats (via PEAR), etc.

There are plenty more frameworks for PHP that are excellent; check out Zend Framework. It's form Zend, the makers of PHP. The MVC (model view controller) scheme it uses is very flexible and scalable and while I don't use it, it's how professional PHP websites are built. There are numerous plugins for generating forms, processing logins, authenticating users, database abstraction layers, etc. For your specific case, I would recommend considering it. And, if you don't want to use MVC, you can use Zend Framework components individually.

link|improve this answer
I didnt think about Zend, I really like PHP as I feel it is very stable, easy to host and generally quick enough. Will look at Zend as well. – John Ballinger Sep 4 '10 at 0:36
9  
"The syntax is clear and consistent" - No. – monadic Sep 4 '10 at 0:38
3  
I'm a fan of PHP too...but I have to disagree with The syntax is clear and consistent PHP is anything but consistent. – Russell Dias Sep 4 '10 at 0:39
Ok, maybe I was to zealous in my support :). But personally, I don't find it that bad to read. – SimpleCoder Sep 4 '10 at 0:42
feedback

Have another look at Rails, v3 has just been released, and there are many rapid tools available.

In particular I'd suggest looking at the Hobo gem, it provides an additional layer of abstraction to Rails which will let you build a site in very little time.

Also look at Merb and Sinatra.

Phusion Passenger should look after your Ruby hosting difficulties.

link|improve this answer
Thanks for that input, I am having a read of this hobo link now. Cheers, John. – John Ballinger Sep 4 '10 at 0:37
I put together a site in Hobo in only a few days, I've found it particularly good once you get to grips with it's dryml template/view language – Slomojo Sep 4 '10 at 0:40
feedback

asp.net mvc is a good choice, tho the stack is generally more expensive.

link|improve this answer
I have started looking that as well. Surprisingly Stackoverflow.com is built on ASP.NET and visual studio. Currently I am on a Mac and just love the OS. I am not too happy to go back to Win7. But Visual Studio does look good and it is something I need to weigh up. Cost isn't really an issue, it's simply time. – John Ballinger Sep 4 '10 at 0:43
feedback

I would go with PHP personally because:

  1. Easy to use date() functions for you calendar needs
  2. You can write to files quickly for notekeeping etc.
  3. There are many extensions you can use like PEAR

Of course other languages are probably more powerful but I think PHP is the way to go.

link|improve this answer
Thanks for the input. I am not sure if you are being serious or not. For smaller sites I would happily use PURE PHP. But this is going to be pretty big and I am looking for more rapid application development techniques that are more cutting edge. Cheers, John. – John Ballinger Sep 4 '10 at 0:44
1  
Could you explain a little more what you mean by Simple invoicing / point of sale system. – Mark Sep 4 '10 at 0:47
feedback

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