How to load page in frame after input submit

1 replies
  • WEB DESIGN
  • |
I have a HTML form that I'm trying to create which should load another page into the frame that it has vacated after the user clicks the Submit button.

However, this is not working so I'm looking for some tips to help.

Cheers.
#frame #input #load #page #submit
  • Profile picture of the author jaimegm
    Start with the simplest code possible, ex
    <html>
    <head></head>
    <body>
    <form name="input" action="your_second_page.php" method="get">
    Username: <input type="text" name="user" />
    <input type="submit" value="Submit" />
    </form> </body>
    </html>

    Then make sure that it works, and add things from there or compare the form that works against the one that does not.
    {{ DiscussionBoard.errors[4519238].message }}

Trending Topics