1 |
A web server can return a sequence of replies to the web browser by running a Non-Parsed Header (NPH) CGI script, usually of the form:
|
2 |
It also uses a special MIME-type,
-
multipart/x-mixed-replaced
|
3 |
which allows each reply to replace the previous one on the same browser page.
|
4 |
The main part of the document is a container, which has boundary strings between the individual entities, each starting with 2 dashes. The final boundary string also ends with 2 dashes to terminate the entire container.
|