From 12734da8826299ffd24c0a15f6dbf205892d7221 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 14 Apr 2014 08:35:13 +0200 Subject: Pushed to v3 --- oldwww/account.php | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 oldwww/account.php (limited to 'oldwww/account.php') diff --git a/oldwww/account.php b/oldwww/account.php new file mode 100644 index 0000000..2db7e85 --- /dev/null +++ b/oldwww/account.php @@ -0,0 +1,58 @@ +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 " +
+
+
+

JUNGE GEMEINDE ADLERSHOF

+
+
+ +
+
+ Verwalte deine Account Informationen hier. +
+
+ + + + + + +

Name: 

$username

E-Mail:

$email

Stored files:

$count

+ + +"; + + +} else { +header("Location: member_login.php"); +exit; +} + +?> -- cgit v1.2.3