|
|
|
|
|
|
|
|
|
| | Private documents |
|
|
|
|
|
|
Private documents
1 and thread = 0 order by id", $db);
echo "\n";
$i = 0;
while ( $row = mysql_fetch_row($res) ) {
$atleastone = true;
echo " | " . $row[2] . " " . $row[0] . " " . $row[3] . " ";
$rres = mysql_query ("select * from documents where thread = " . $row[4] . " and superseded = 0", $db);
if ( mysql_num_rows($rres) and is_file ('docs/'.$row[4].'.zip') )
echo '[ Download zip ] ';
else if ( $row[5] != "" )
echo "[ Download ]\n
| \n";
else
echo "[ Download non disponibile ]\n";
}
echo " | \n";
if ( !$atleastone )
echo "Ancora nessun documento nel sistema...\n";
?>
|
|