Homework assignment #2.
In this assignment you need to demonstrate your ability to use different HTML input elements. You
need to design an input form that allows a user to enter the following:
- date - you need to provide a text box to let user enter a date when a picture was taken
in the format mm/dd/yyyy. Please limit this field with 10 symbols
- time - the time the picture was taken in the format hh:mm (a simple text box)
- digital image - provide an element for the file name that contains a digital picture
- title - a short description of the image (a text box, no more than 128 symbols)
- comments - a text area that allows the user to insert additional comments on a picture
- camera used - a drop down box that let's the user to select a camera manufacturer
Shortly speaking, you should create a form like the one on the picture (but try to make it more fancy)
Please format your input elements and prompting text to make your form look pretty.
Do not forget to name all your input elements. Use the string
"http://ist.marshall.edu/ist263/php_examples/show_params.php"
as the value of the action attribute of the <form>
tag. If you do everything correctly, then upon clicking on the Upload button you should see
all the data you entered in the form.
Please user method POST for the <form> element and also set enctype attribute to
multipart/form-data.