blob: 7dd3893a5662b60fb912a75a47fc85f875191325 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php
/* Copyright Maximilian Möhring, 2013
Licensed under the GPL. Read LICENSE for more Information.*/
include('auth.php');
include("header.php");
?>
<div id='content_container' align='center'>
<br>
<div class='kleineschrift'>
<div class='ueberschrift'><p>JUNGE GEMEINDE ADLERSHOF</p>
</div>
</div>
<?php
$db = new SQLite3("../database/share_test.db");
$show_public_db = $db->query("SELECT filename FROM file WHERE private=0;");
while($show_public_array = $show_public_db->fetchArray() ){
echo " $show_public_array[filename]";
}
?>
|