Tilføj først en data-(anyName)
tag som nedenfor
<?php $ID = 'The persons Username'; ?>
<a href='#' class='btn btn-warning btn-xs open-AddBookDialog' data-id='$ID' data-toggle='modal'>My Modal</a>
Sæt derefter et input-tag inde i din modale krop med et id for eksempel(MyID)
<input type="text" id="MyID">
Ved at bruge koden nedenfor (jquery) vil dette overføre værdien af data-id til det input-tag på modal show.
$(document).on("click", ".open-AddBookDialog", function () {
var myId = $(this).data('id');
$(".modal-body #bMyID").val(myId);
$('#myModal').modal('show');
});