<?php
  $table  = <<<HTML
    <table id="tblClienti" class="cell-border compact display">
      <thead>
        <tr>
          <th>Cmd</th>
          <th>ID</th>
          <th>Ragione sociale</th>
          <th>Nazione</th>
          <th>Regione</th>
          <th>Provincia</th> 
          <th>Localita</th>
          <th>Indirizzo</th>
          <th>Cod. Fiscale</th>
          <th>Partita IVA</th>
          <th>Creazione</th>
          <th>Modifica</th>
          <th>Annullo</th>
          <th>Operatore</th>
        </tr>
      </thead>
      <tbody>
      </tbody>
    </table>
  HTML;

  if (file_exists($conf->path_inc.DIRECTORY_SEPARATOR."backoffice.body.php")) {
    $body = str_replace("§tabella_def§",$table,file_get_contents($conf->path_inc.DIRECTORY_SEPARATOR."backoffice.body.php"));
    echo $body;
  }
?>