|
Server IP : 10.128.40.6 / Your IP : 216.73.216.233 Web Server : Apache System : Linux webd006.cluster128.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : logmcpe ( 111175) PHP Version : 7.3.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0705) : /home/logmcpe/www/MCPRO/lesCheques/../ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
include_once 'code/init.php';
// echo "testt <br/>" ;
print_header ();
?>
<table class="td_normal" width="90%" style="margin:0 auto;">
<caption style="font-weight:bold;text-transform :uppercase;"> <h2>Prestations ponctuelles </h2></caption>
<tr>
<th width="10%">nom </th>
<th width="10%"> nom (contact )</th>
</tr>
<?php
$q=dbi_query("SELECT * FROM `client` where agence_id = ".$agence." AND client_actif= '0' ORDER BY `client`.`client_nom` ASC ") ;
while($prest = dbi_fetch_row($q))
{
list($nom ,$prenom) = dbi_fetch_row(dbi_query(" SELECT nom , prenom FROM contacts_2 where client_id = ".$prest['client_id'])) ;
?>
<tr>
<td class="td_listing1" ><?=$prest['client_nom'].' '.$prest['client_pnom'] ?></td>
<td class="td_listing1"><?= $nom.' '.$prenom ?></td>
</tr>
<?php
}
?>
</table>