aboutsummaryrefslogtreecommitdiff
path: root/www/share.php
blob: 59af81f4af6093d03639aab8ea13c7276e63febb (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/database.sqlite");

$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]";
}

?>