Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the difference between a website and a web application?

share|improve this question

8 Answers

up vote 16 down vote accepted

You can charge the customer more if you claim it's a web application :)

Seriously, the line is fine. Historically, web apps were the ones with code and/or scripts (in Perl/CGI, PHP, ASP, etc.) on the server, and sites were the ones with static pages. Currently, everyone and their uncle's cat are running forums, guestbooks, CMS - that's all server code.

Another distinction is along the subject matter lines. If it's a line-of-business solution, then it's an app. If it's consumer oriented - they call it a site. Although technology-wise, it's more or less the same.

share|improve this answer

Websites are primarily informational. In this sense, http://cnn.com and http://php.net are websites, not web applications.

Web applications primarily allow the user to perform actions. Google Analytics, gmail, and jslint are web applications.

They are not entirely exclusive. A university will likely have a website that gives information such as location, tuition rates, programs available, etc. It will likely have web applications that allow teachers to manage grades and course materials, applications for students to check their grades, register for courses, etc.

share|improve this answer
A website can even host a web-application. But I like the application analogy in the web you do here :) – hakre Aug 15 '12 at 22:34
is Google a web app? – Faizan Feb 12 at 16:50
I think google is a webapp. it provides information as user interact. by this scene we can say google an web app. – Nur Mohammed Rony Apr 30 at 5:08

A website might just be static content - a web application would have dynamic content. It is a very fuzzy line.

share|improve this answer
1  
Not always. A website can have a dynamic content inside it as well and a web application might have a static content. – jpartogi Dec 24 '09 at 23:23
1  
Almost all web applications have static content like this one - the FAQ is for all practical purposes static. – Philip Schlump Dec 25 '09 at 0:14

Semantics.... generally a website contains static HTML pages and a web application performs some type of work. For example, a website for a realtor may give information about the realtor, where a web application for the realtor may list current properties and manage the contact information for the realtor themselves.

share|improve this answer

We know what is a "site" and "application", so all we got left is The Web

Now, a web application may be a part of a whole website. A website is comprehended of web applications. Though usually you'll see that a website has only one web application.

For instance, you have an iPhone device (compared to a website) which may include different applications: playing music, videos, web browser etc.

share|improve this answer

A web-application is an application that is hosted on the internet. It can have a front-end or user-interface on a web-site.

Hope that helps.

share|improve this answer

A web application is a software program which a user accesses over an internal network, or via the internet through a web browser. An example of one of the most widely used web applications is Google Docs, which facilitates most of the capabilities of Microsoft Word; it’s free and easy to use from any location.

A web site, on the other hand, is a collection of documents that are accessed via the internet through a web browser. Web sites can also contain web applications, which allow visitors to complete online tasks such as: Search, View, Buy, Checkout, and Pay.

share|improve this answer

web application is better in performance as you are publishing a precompiled code meanwhile site is better in maintainability. each one has its own pros and cons

check the difference here, it is helpful to understand carefully.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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