32 lines
1.9 KiB
PHP
32 lines
1.9 KiB
PHP
<div id="div_listemedecins" >
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style='font-size:10pt;' >
|
|
<thead>
|
|
<tr>
|
|
<th style="text-align:center" width="15%" > Code </th>
|
|
<th width="50%" style="text-align:center" > Nom contenant... </th>
|
|
<th colspan="2" style="text-align:center" > Type </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><input type="text" class="form-control" id="codesearch2" name="codesearch2" autofocus style='font-size:10pt;' ></td>
|
|
<td><input type="text" class="form-control" id="nomsearch2" name="nomsearch2" autofocus style='font-size:10pt;' ></td>
|
|
<td><input type="button" class = "form-control btn btn-info" style='font-size:10pt;' value="Rechercher... / Search..." onclick="javascript:afficher_pop_recherche_prestataire2();" /></td>
|
|
<td><input type="button" class = "form-control btn btn-info" style='font-size:10pt;' value="Ré-initialiser..." onclick="javascript:reinitialiser_prestataire2();" /></td>
|
|
</tr>
|
|
<?php foreach ($prestataires_pop as $prestataire_pop):
|
|
$codePrestataire = $this->nettoyer($prestataire_pop['codePrestataire']);
|
|
$nomPrestataire = $this->nettoyer($prestataire_pop['nomPrestataire']);
|
|
$typeprestataire = $this->nettoyer($prestataire_pop['typeprestataire']);
|
|
?>
|
|
<tr ondblclick="javascript:selectionner_prestataire2('<?=$codePrestataire?>','<?=$nomPrestataire?>');" valign="top">
|
|
|
|
<td align="center"> <input type="button" style='font-size:10pt;' class = "form-control btn btn-primary" value="<?= $codePrestataire ?>" onClick="javascript:selectionner_prestataire2('<?=$codePrestataire?>','<?=$nomPrestataire?>');" > </td>
|
|
|
|
<td> <?= $nomPrestataire ?> </td>
|
|
<td colspan="2"> <?= $typeprestataire ?> </td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|