• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/8

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

8 Cards in this Set

  • Front
  • Back

Common Gateway Interface

offers a standard protocol for web servers to interface with executable programs running on a server that generate web pages dynamically.

HTTP persistent connections

is the idea of using a single TCP connection to send and receive multiple HTTP requests/responses

javascript

JavaScript is the programming language of HTML and the Web

Model View Controller (MVC)

Separates data access and business logic from datapresentation and user interaction so that Changes to the userinterface will not affect data handling


(diagram)

3 classes of MVC

the model - often linked to a database


the view - does no processing


the controller - send messages to model



getting data to a web server

location of data must be known


web server uses HTTP to serve the files that form the web pages to users in response to their requests


Initiates communication through HTTP


HTTP Request - Response lifecycle

HTTP messages exchanges between client and server


request/response encoded in text


client sends request to server followed by a response


server closes connection


server maintains no info about past client requests

HTTP Get And Post methods

GET - requests for a document on a server


- has no side effects




POST - send info to server


- create a new resource