mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-25 15:22:24 +01:00
8 lines
307 B
PHP
8 lines
307 B
PHP
|
<?php
|
||
|
if( $docroot == '' ){
|
||
|
die( _("Accesso negato!") );
|
||
|
}
|
||
|
/* LEFT OUTER JOIN zz_files ON idfile = zz_files.id */
|
||
|
$records = $dbo->fetchArray("SELECT *, zz_documenti.`id`as id, zz_documenti.nome AS nome, zz_documenti.`data` AS `data` FROM zz_documenti WHERE zz_documenti.id = '".$id_record."' ");
|
||
|
?>
|