Buongiorno, volevo chiedervi un aiuto.
Questo listato che pubblico sotto, pubblica a video certe informazioni ed il mio problema è che ogni giorno quando accedo alla pagina, tutte le informazioni a video vengono cancellate e nel database rimangono come giusto che sia! Quello che io vi chiedo è: quale parte del codice azzera la pagina ogni giorno? Io voglio che i dati rimangano a video per sempre. Grazie .
<?php
$clients = $db->select("SELECT DISTINCT c.name as namec,
c.id as idc
FROM clients c, scarto s
WHERE
s.client_id = c.id AND
(DATE(s.created) = CURDATE())
ORDER BY c.name desc");
foreach ($clients as $client) { ?>
<tr class="danger">
<th scope="row"></th>
<td><?php echo $client["namec"]; ?></td>
<td>
<table class="table">
<thead>
<tr class="active">
<th>Sporco</th>
<th>Rotto</th>
</tr>
</thead>
<tbod>
<?php
$scarto_proccessing = $db->select("SELECT
a.name as namea,
c.name as namec,
c.id as idc,
sum(s.quantity_sporco) as qs,
sum(s.quantity_rotto) as qr,
DATE_FORMAT(s.created, '%d %b - %H:%i') as created
FROM clients c, scarto s, articles a
WHERE
a.id = s.article_id AND
s.client_id = c.id AND
c.id = ".$client["idc"]." AND
(DATE(s.created) = CURDATE())
GROUP BY a.id
ORDER BY a.name desc");
foreach ($scarto_proccessing as $thescarto) { ?>
<tr>
<td><?php echo $thescarto["namea"]." - ".$thescarto["qs"]; ?></td>
<td><?php echo $thescarto["namea"]." - ".$thescarto["qr"]; ?></td>
</tr>
<?php
}
?>