Please enable JavaScript.
Coggle requires JavaScript to display documents.
EXPLAIN WEB DEVELOPMENT, image - Coggle Diagram
EXPLAIN WEB DEVELOPMENT
Web Application
-
Common web applications include email, online retail sales, online auctions, instant messaging services and more
-
-
-
Database Server
Database server may refer to both hardware and software used to run a database, according to the context.
As software, a database server is the back-end portion of a database application, following the traditional client-server model.
As hardware, the database server is typically a dedicated higher-end computer that hosts the database
-
Upon requests from the client machines, it searches the database for selected records and passes them back over the network.
Web Server
-
Send any web page from the website it is hosting to any user's browser, per user request
Retrieves the file associated with the URL and return the contents to the client (static website did not interact with database)
To publish a website, you need either a static or a dynamic web server.
Static web server, or stack, consists of a computer (hardware) with an HTTP server (software). We call it "static" because the server sends its hosted files as-is to your browser.
Consists of a static web server plus extra software, most commonly an application server and a database
Dynamic Web
Contains information that changes, depending on the viewer, the time of the day, the time zone, the viewer's native language, and other factors.
Contain client-side scripting or server-side scripting to generate the changing content or a combination of both scripting types.
-
-
-