I am passing value to a bootstarp modal form like this -
echo '<a data-toggle="modal" data-id="ISBN45464" data-toggle="modal" title="Add this item" class="AddBookDialog" href="#addBookDialog">';
javascript:
<script>
$(document).on("click", ".AddBookDialog", function () {
var myBookId = $(this).data('id');
$(".modal-body #bookId").val( myBookId );
$('#addBookDialog').modal('show');
});
</script>
And receiving it in a text area like this -
echo '<textarea name="bookId" id="bookId"></textarea>';
Now my question is how to get this value into a php variable say $receivedValue?