diff options
| author | root | 2014-03-02 00:13:01 +0100 |
|---|---|---|
| committer | root | 2014-03-02 00:13:01 +0100 |
| commit | 82185753906709f9944a07c35a809736cf979afe (patch) | |
| tree | 3d9a9f82f13f84ba82ef9f0a2823c11989e526f0 /www/account.php | |
| parent | f10abe4b061ce7e4f8719c2730d6edab7c06b00c (diff) | |
| download | jungegemeinde-82185753906709f9944a07c35a809736cf979afe.tar.gz | |
new folder etc
Diffstat (limited to 'www/account.php')
| -rw-r--r-- | www/account.php | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/www/account.php b/www/account.php new file mode 100644 index 0000000..2db7e85 --- /dev/null +++ b/www/account.php @@ -0,0 +1,58 @@ +<?php include('auth.php'); + +/* Copyright Maximilian Möhring, 2013 +Licensed under the GPL. Read LICENSE for more Information.*/ + +include("header.php"); + +if ($_SESSION["username"] != "jg-adlershof"){ + + $username = $_SESSION["username"]; + $db_check = new SQLite3("../database/database.sqlite"); + + $safe_username = SQLite3::escapeString("$username"); + $email_db = $db_check->query("SELECT email FROM user where name='$safe_username';"); + while($email_array = $email_db->fetchArray(SQLITE3_NUM)){ + foreach($email_array as $thirdelement){ + $email=$thirdelement; + } + } + + /*Anzahl der hochgeladenen Dateien.*/ + $count_db = $db_check->query("SELECT count(*) as count FROM file where fk=(SELECT id from user where name='$safe_username');"); + $count_array = $count_db->fetchArray(); + $count = $count_array["count"]; + + +//echo "$username Test $email"; +echo " +<div id='content_container' align='center'> + <br> + <div class='kleineschrift'> + <div class='ueberschrift'><p>JUNGE GEMEINDE ADLERSHOF</p> + </div> + </div> + +<br> +<div class='mittlereschrift'> + Verwalte deine Account Informationen hier. +</div> +<br> + + +<table><tr> +<td><p>Name: </td><td align='right'>$username</p></td></tr> +<tr><td><p>E-Mail:</td><td align='right'>$email</p></td></tr> +<tr><td align='left'><p>Stored files:</td> <td align='right'>$count</p></td></tr> +</table> + + +"; + + +} else { +header("Location: member_login.php"); +exit; +} + +?> |
