I am attempting to display the selected image in the same window. I have 2 forms, with the second form containing the images. I want to show the chosen image in my first div class. Since I am new to bootstrap, I am unsure how to accomplish this. Can anyone provide assistance? Thank you.
<div class="col-sm-12">
<div class="col-sm-3"></div>
<div class="col-sm-6">
<form method="POST" action="information.php">
<div class="">
<p> Your Book TCS </p>
</div>
</form>
</div>
<div class="col-sm-3">
// I NEED TO SHOW THE IMAGE HERE
</div>
</div>
<div class="col-sm-12">
<div class="col-sm-3"> </div>
<div class="col-sm-6">
<div class="form2">
<div class="row">
<div class="column">
<img src="img/image.png" class="rounded float-left" alt="Cinque Terre">
</div>
</div>
</div>
</div>
<div class="col-sm-3"></div>