|
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/TEST/www/../../MCPRO/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>AdminLTE 2 | Data Tables</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- Bootstrap 3.3.7 -->
<link rel="stylesheet" href="../../bower_components/bootstrap/dist/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="../../bower_components/font-awesome/css/font-awesome.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="../../bower_components/Ionicons/css/ionicons.min.css">
<!-- DataTables -->
<link rel="stylesheet" href="../../bower_components/datatables.net-bs/css/dataTables.bootstrap.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="../../dist/css/AdminLTE.min.css">
<!-- AdminLTE Skins. Choose a skin from the css/skins
folder instead of downloading all of them to reduce the load. -->
<link rel="stylesheet" href="../../dist/css/skins/_all-skins.min.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic">
<style>
body {
background-color: rgb(236,240,245);
}
.box-body {
background-color: rgb(255,255,255);
}
</style>
</head>
<body class="hold-transition skin-blue sidebar-mini">
<?php
include_once 'code/init.php';
$today = date("Y-m-d H:i:s");
// Une date dans le futur
// $date_1 = new DateTime('2019-08-27 20:17:23');
// Une date dans le passé
// $date_2 = new DateTime('2019-08-27 20:17:22 ');
// On compare les deux dates
// if($date_1 > $date_2){
// echo 'yassin <br/>';
// }
?>
<div class="onglet_dotted">
<div class="box">
<div class="box-body">
<table id="example1_1111" class="table table-bordered table-striped">
<thead>
<tr>
<th width="30%" >Nom</th>
<th >Bureau</th>
</tr>
</thead>
<tbody>
<?
$rq =dbi_query("SELECT * FROM `client_suivi` WHERE `client_suivi_clos` = '0' AND `suivi_id` = 16 AND `suivi_parent_id` = 0") ;
while($ab=dbi_fetch_row($rq))
{
$rqo =dbi_query("SELECT * FROM `client_suivi` WHERE `client_suivi_clos` = '0' AND suivi_programme=1 and suivi_biais_id= 21 AND `suivi_id` = 16 AND `suivi_parent_id` = ".$ab['client_suivi_id']) ;
while($abc=dbi_fetch_row($rqo))
{
// echo "testt <br/>" ;
if(new DateTime($abc['suivi_date'])<= new DateTime($today) )
{
$c = dbi_fetch_row(dbi_query("SELECT * FROM client c , bureau b where c.client_bureau = b.id_bureau and client_id = ".$abc['client_id'])) ;
?>
<tr>
<TD><A href="top.php?link=client&page=suivi_gestion&suivi=historique&id=<?=$c['client_id']?>" target="ident"><?=strtoupper($c['client_nom']).' '.ucwords(strtolower($c['client_pnom']))?></A></TD>
<td><?=$c['nom_agence']?> </td>
</tr>
<?
}
}
}
?>
</tbody>
</table>
</div></div>
</div>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<!-- Bootstrap 3.3.7 -->
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- DataTables -->
<script src="bower_components/datatables.net/js/jquery.dataTables.min.js"></script>
<script src="bower_components/datatables.net-bs/js/dataTables.bootstrap.min.js"></script>
<!-- SlimScroll -->
<script src="bower_components/jquery-slimscroll/jquery.slimscroll.min.js"></script>
<!-- FastClick -->
<script src="bower_components/fastclick/lib/fastclick.js"></script>
<!-- AdminLTE App -->
<script src="dist/js/adminlte.min.js"></script>
<!-- AdminLTE for demo purposes -->
<script src="dist/js/demo.js"></script>
<!-- page script -->
<script>
$(function () {
$('#example1').DataTable()
$('#example2').DataTable({
'paging' : true,
'lengthChange': false,
'searching' : false,
'ordering' : true,
'info' : true,
'autoWidth' : false
})
})
</script>
</body>
</html>
