Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Single CGI script for submission,processing and displaying of results

by sierrathedog04 (Hermit)
on Feb 22, 2001 at 22:00 UTC ( [id://60274]=note: print w/replies, xml ) Need Help??


in reply to Single CGI script for submission,processing and displaying of results

If you wish to use only standard HTML then the answer is no, and here is why.

A web browser downloads a page of HTML and parses it, usually concurrently.

There is no mechanism in HTML for a server to change a single line of HTML once a browser has already downloaded it. Similarly, there is no mechanism for a browser to change a single line of HTML in a page that it has already downloaded.

The only way for a server to change the value of a single form field is to download the entire page again. The questioner asks for the results to accumulate in the same text box. That does not happen with straight HTML. Rather, the server script sends a brand new page over with a brand new text box in it that has a brand new value.

A browser can change form values locally using Javascript, a page can even include a Java applet that updates itself to display changing information. But a server cannot return a new form value to an HTML form without sending the entire page with form all over again.

  • Comment on Re: Single CGI script for submission,processing and displaying of results

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://60274]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (7)
As of 2024-04-19 17:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found