I am using summernote (bootstrap wysiwyg text area) and trying to pass its value to a PHP page to insert its value into the database. I am not sure how to grab its value on the next page. All the other form fields are standard, for example -->
<input type="text" maxlength="50" class="form-control" name="fname" placeholder="Enter first name" required>
..... on the next PHP page I would just create a variable such as $firstname=$_POST['fname'];
but the code for summernote on the registration page is the following and I don't see what value to use or how to code it. Any help is appreciated -->
<div id="summernote"></div>
<script>
$('#summernote').summernote({
placeholder: 'Hello bootstrap 4',
tabsize: 2,
height: 100
});
</script>
..