First of all don’t post pictures and show some code or HTML in the comment using the </> thing ma jig.
Second, an HTML form is just a way for the user to input his or her information in so that the programing script (PHP or some other server-side programming language) can process it.
Here a form where I enter comment in my own content management system (CMS).
<form id="formData" class="form_classes" action="create.php" method="post" enctype="multipart/form-data">
<input type="hidden" name="cms[user_id]" value="3">
<input type="hidden" name="cms[author]" value="John Smith">
<input type="hidden" name="action" value="upload">
<input class="form_image_upload_style" type="file" name="image">
<label class="heading_label_style" for="heading">Heading</label>
<input class="enter_input_style" id="heading" type="text" name="cms[heading]" value="" tabindex="1" required
autofocus>
<label class="text_label_style" for="content">Content</label>
<textarea class="text_input_style" id="content" name="cms[content]" tabindex="2"></textarea>
<button class="form_button" type="submit" name="submit" value="enter">submit</button>
</form>
it is processed by a php script and here’s a very small chunk of it:
if (isset($_POST['submit'], $_FILES['image'])) {
$data = $_POST['cms'];
$errors = array();
$exif_data = [];
$file_name = $_FILES['image']['name']; // Temporary file for thumbnails directory:
$file_size = $_FILES['image']['size']; // Temporary file for uploads directory:
$file_tmp = $_FILES['image']['tmp_name'];
$thumb_tmp = $_FILES['image']['tmp_name'];
$file_type = $_FILES['image']['type'];
$file_ext = strtolower(pathinfo($_FILES['image']['name'], PATHINFO_EXTENSION));
/*
* Set EXIF data info of image for database table that is
* if it contains the info otherwise set to null.
*/
if ($file_ext === 'jpeg' || $file_ext === 'jpg') {
// more code....
I hope this clarifies it a little?
Oh, to answer you question you would need an update script of some kind.