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.


In reply to Re: Single CGI script for submission,processing and displaying of results by sierrathedog04
in thread Single CGI script for submission,processing and displaying of results by Eureka_sg

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.