I want to execute the modal only if the call exists. Because it's taking too long to open the page.
Below is the modal used:
<div class="modal fade" id="m_modal<?php echo $count ?>" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="m-portlet m-portlet--full-height ">
<div class="m-portlet__head">
<div class="m-portlet__head-caption">
<div class="m-portlet__head-title">
<h3 class="m-portlet__head-text">
Produtos Licenciados
</h3>
</div>
</div>
<div class="m-portlet__head-tools">
</div>
</div>
<div class="m-portlet__body">
<div class="m-widget6">
<div class="m-widget6__head">
<div class="m-widget6__item">
<span class="m-widget6__caption">
Nº do Produto
</span>
<span class="m-widget6__caption">
Validade
</span>
<span class="m-widget6__caption">
Tipo
</span>
<span class="m-widget6__caption m--align-right">
Valor
</span>
</div>
</div>
<div class="m-widget6__body">
<?php
$comprador = $row['cod_comprador'];
$sqlrec = $db->prepare("SELECT pro.numero_produto, pro.validade, pro.tipo_produto, pro.valor_produto FROM prouto pro where rec.cod_comprador = '$comprador' ORDER BY pro.validade desc");
$sqlrec->execute(); $arec = 0 ;
while($rowrec=$sqlrec->fetch(PDO:: FETCH_ASSOC)){
$arec++; ?>
<div class="m-widget6__item">
<span class="m-widget6__text">
<? echo $rowrec['numero_produto']?>
</span>
<span class="m-widget6__text">
<?php echo date('d/m/Y', strtotime($rowrec['validade']));?>
</span>
<?php
switch ($rowrec['tipo_produto']) {
case '1':
echo "<span class='m-widget6__text'>Avulsa</span>";
break;
case '2':
echo "<span class='m-widget6__text'>Mensal</span>";
break;
}
?>
<span class="m-widget6__text m--align-right m--font-boldest m--font-brand">
R$<? echo str_replace('.', ',', $rowrec['valor_produto'])?>
</span>
</div>
<?php } ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
Here I call Modal
<a href="javascript:;" class="btn btn-secondary m-btn m-btn--icon m-btn--icon-only" data-toggle="modal" data-target="#m_modal<?php echo $count++ ?>">
<i class="la la-barcode"></i>
</a>