Posting Form Data

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • EJ

    Posting Form Data

    I'm not bad with ckient-side js

    What is the simplest way to gather data from a form enter it into a
    server-side html page?

    I'd like a new entry for each new post ...

    .... effectively an a html data base


    BTW, can this be done purely in html without the use of a scripting
    language?


  • Martin Honnen

    #2
    Re: Posting Form Data



    EJ wrote:
    [color=blue]
    > What is the simplest way to gather data from a form enter it into a
    > server-side html page?
    >
    > I'd like a new entry for each new post ...
    >
    > ... effectively an a html data base
    >
    >
    > BTW, can this be done purely in html without the use of a scripting
    > language?[/color]

    Use
    <form method="post"
    action="whateve r.php">
    <input type="text" name="inputName ">
    ...
    <input type="submit">
    </form>
    --

    Martin Honnen


    Comment

    Working...