Here is my php code for display list of services
<?php foreach($services as $service) { ?>
<a href="" id="fetch" data-toggle="modal" data-target="#myModal" class="btn-block"><?php echo htmlentities($service->services_title); ?></a>
<?php }?>
Now i want to display detailed description in bootstrap model but it shows only the first loop value never shows other values.
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel"><?php echo htmlentities($service->services_title); ?></h4>
</div>
<div class="modal-body">
<?php echo htmlentities($service->services_description); ?>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
id="myModal"to every modal. It should be unique for your every service.