2
0

cms.historique.php 163 B

12345678910
  1. <?php
  2. $row = historique::getAll();
  3. if (!empty($row)) {
  4. $row[0]["log"] = nl2br($row[0]["log"]);
  5. echo json_encode($row);
  6. exit();
  7. } else {
  8. exit();
  9. }