I am trying to make a website where users can make there own customisable website, a bit like http://www.weebly.com, any idea on programming languages would be a good idear to learn?

link|improve this question
HTML?? javascript?? and a serverside language PHP is good because its open source. I have a feeling that this question will be closed soon though... – Laurence Burke Oct 6 '11 at 19:43
How do they make the drag and drop editing? – user982895 Oct 6 '11 at 19:47
well html5 now does drag and drop editing... But is not supported by all major browsers.. but what they are using is probably ajax/json/jquery – Laurence Burke Oct 6 '11 at 19:48
To be brutally honest, I think this might be too much of an undertaking for someone who doesn't even know where to start. – TheCloudlessSky Oct 6 '11 at 20:07
feedback

closed as not constructive by Mat, Luchian Grigore, Brandon E Taylor, Tim Cooper, leppie Oct 6 '11 at 20:33

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 for guidance on how to improve it.

2 Answers

up vote 1 down vote accepted

Try learning a back-end programming language with a framework: RoR is quite popular at the moment, PHP with Zend or CakePHP. You'd also need a DB, MySQL is one option. For the client-side, you should definetly know JavaScript, JQuery, AJAX, HTML and CSS.

EDIT:

When you ask about drag and drop editing... Well I just feel compelled to tell you to learn as much as possible at first and don't worry about the UI at first. Learn a back-end language, learn JavaScript and AJAX, learn how to design and use databases. You can't directly start doing fancy UI stuff without at least knowing the basics.

link|improve this answer
Thank you very much – user982895 Oct 6 '11 at 19:53
feedback

Definetly PHP is the most used language in the internet today, but have a lot of others, like Ruby, Perl, ASP.NET (Microsoft), Java and so on.. Actually PHP has a lot of resources, EASY vs FAST to learn, it is a great option, MySQL and Postgres are two great options to databases (both are open source). And finally Java Script is essential if you are going to work with user interfaces (UI).

If you want to start straight with ANY Frameworks then a learning curve is expect to.

In my opnion, the best way is start with the language, follow the oficial API (If have one) or documentation, and exercise a lot. Try out all examples, ask in forums, go deep in the specification, after that you decide if you want to go to some kind of framework or you want to build up your own, or whatever.

The problem about frameworks

once you learn to programming in some framework, you get used to it, perheps you need to change your job, and it will be a problem to get start again, if you learn for example Python, then you know Python, not the frameworks that was wrapped in Python, Do you understand?

That's all, I wish a good decision to you in choosing your language and database.

Observation: Once you get used to some language start to learn other, it is good for you.

link|improve this answer
I completely disagree with you on the framework part. It's like saying don't learn ONE programming language since you might change jobs... Just beacause you lear Zend for example will only make you a better PHP programmer. You'll have to learn new stuff, not strictly language related, but also concepts, program design, MVC architecture and so on. Keywords shouldn't be a programmer's biggest concern... Just my 2 cents. – Luchian Grigore Oct 6 '11 at 20:09
@Luchian Grigore It is your right to completely disagree. First I do not say, "don't learn ONE programming language" I said to not get used to Frameworks, is much better you learn the language itself, because you can apply it in everywhere. The framework is "LIMITED". That's all. I understand the concepts, and the best to learn the concepts is to build them by yourself, did you try to build yourown framework? If not it is a good point to observe. – B4NZ41 Oct 6 '11 at 20:17
Building concepts by yourself? Really? I would much rather trust concepts already proven to work by experienced professionals and emulate those, try to understand them and learn from them, and compare them to my ideas rather than limit myself to my own concepts. – Luchian Grigore Oct 6 '11 at 20:50
Why Not Dear @Luchian. Here is a place to share opnions not to attack each other ideas. All Right? Open mind to be able to fly high!!! Otherwise get stacked in your own opnions! The conversation is over. Thanks for your time. – B4NZ41 Oct 7 '11 at 0:39
feedback

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