dynamic_add_form_html

  1| <html>
  2| <head>
  3| <title>Dynamic Web Page Add Record Form</title>
  4| </head>
  5| <body>
  6| <h1>Dynamic Web Page Add Record</h1>
  7| 
  8| <form name="add_form" action="http://localhost/phpwork/week6/dynamic_add.php" method="post">
  9| <fieldset id="input_field" style="width: 300px">
10| Sort Key: <input type="text" name="sortkey" id="sortkey" size="10" maxlength="8"/>
11| <br/><br/>
12| Enter Record Event or Content: <input type="text" name="content" id="content" size="100" />
13| <br/><br/>
14| <input type="submit" name="Submit" value="Submit Sort Key and Record Item" />
15| <input type="reset" name="Reset" value="Reset Sort Key and Record Item" />
16| </fieldset>
17| </form>
18| </body>
19| </html>