commit 48135299c6cbf5b999a1132a2447922ee86155b1 Author: aschwarz Date: Fri Apr 14 11:55:30 2023 +0200 first commit diff --git a/Kennwortwechsel_doz.php b/Kennwortwechsel_doz.php new file mode 100755 index 0000000..78edcad --- /dev/null +++ b/Kennwortwechsel_doz.php @@ -0,0 +1,387 @@ +query("SELECT doz_name, doz_vorname FROM doz where doz_uid=\"$doz_uid1\""); +$row = $result->fetch_array(); + +echo " + + + + +Kennwort ändern + + + + + + +
+
+ + + + + + + + + + + + + + + + +
+ +
+ Kennwort ändern
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name: +

$row[doz_vorname] $row[doz_name]

+
+ altes Kennwort: +

+

+
+ neues Kennwort: +

+

+
+ neues Kennwort wiederholen: +

+

+
+

 

+
+

 

+
+
+
+
+ + +
+
+
+ +"; + +break; +case "wechsel": + +$db = dbconnect(); +$result = $db->query("SELECT doz_pwd FROM doz where doz_uid=\"$doz_uid1\""); +$row = $result->fetch_array(); + + +If ($_POST[pw_alt] == "" or $_POST[pw_neu] == "" or $_POST[pw_wied] == "") +{ +echo " + + + + +Eingabefehler + + + + + + +
+
+ + + + + + + + + + + + + + + + + +
+ +
+ Eingabefehler
+
+
+
+

Es müssen alle Felder ausgefüllt werden! +

+

+
+

+

+

+

+

+


+

+
+
+ + +
+
+
+ +"; + +} else { + +$pwd_alt = md5($_POST['pw_alt']); + +if ($pwd_alt != $row[doz_pwd]) +{ +echo " + + + + +Eingabefehler + + + + + + +
+
+ + + + + + + + + + + + + + + + + +
+ +
+ Eingabefehler
+
+
+
+

Ihr altes Kennwort stimmt nicht
mit dem aus dem System überein!
+

+

+
+

+

+

+

+

+


+

+
+
+ + +
+
+
+ +"; + +} else { + +$pwd_neu = md5($_POST['pw_neu']); +$pwd_wied = md5($_POST['pw_wied']); + +if ($pwd_neu != $pwd_wied) +{ +echo " + + + + + +Eingabefehler + + + + + + +
+
+ + + + + + + + + + + + + + + + + +
+ +
+ Eingabefehler
+
+
+
+

Das neue Kennwort stimmt nicht
mit der Kennwortwiederholung überein!
+

+

+
+

+

+

+

+

+


+

+
+
+ + +
+
+
+ +"; + + +} else { + +dbconnect (); + +$passwd = md5($_POST['pw_neu']); +//$passwd= mysqli_escape_string($db,$passwd); + +$sql = $db->query ("UPDATE doz SET doz_pwd=\"$passwd\" WHERE doz_uid=\"$doz_uid1\""); + +echo " + + + + +Kennwort geändert + + + + + + +
+
+ + + + + + + + + + + + + + + + + +
+ +
+ Kennwort geändert
+
+
+
+

Das Kennwort wurde aktualisiert! +

+

+
+

+

+

+

+

+


+

+
+
+ + +
+
+
+ +"; + } + } +} + + + +} // Ende IF von Action Abfrage +?> diff --git a/bewertung.php b/bewertung.php new file mode 100755 index 0000000..fb561f3 --- /dev/null +++ b/bewertung.php @@ -0,0 +1,467 @@ +query("SELECT lv_name + , lv_ort + , studiengang + , ag + , jahrgang + , lv_art + , teilnehmer + FROM bew_wunsch + WHERE doz_uid='$doz_uid1' + AND lfd_nr = '$lfdnr'"); +$row3 = $result2->fetch_array(); + +echo " + + + + +Administrator anlegen + + + + + + + + +
+
+ + + + + + + + + + + + + + + + +
+ +
+ $titel
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + +
+ Vorlesungsname*: + "; + + $query = "SELECT vlid, bezeichnung FROM bew_vorlesungen ORDER BY bezeichnung"; + $result = $db->query ($query) + or die ("Cannot execute query"); + echo ""; + echo" +
+ Studiengang: + + +
+ AG: + "; + $db = dbconnect(); + $query1 = "SELECT distinct UPPER(ag) ag + FROM stud + ORDER BY ag ASC + "; + + $result1 = $db->query ($query1) + or die ("Cannot execute query"); + echo ""; + + $query2 = "SELECT distinct UPPER(jahrgang) jahrgang + FROM stud + WHERE jahrgang <'99' + ORDER BY jahrgang DESC + "; + + $result2 = $db->query ($query2) + or die ("Cannot execute query"); + echo " / "; + echo " +
+ Vorlesungsart: + + +
+ Anzahl der Teilnehmer: + + +
+ * = Pflichtfelder + +   +
+
+
+ + +
+
+
+ + +
+
+
+ +"; + +break; +case "bew": +$db = dbconnect(); +$lfdnr = $_COOKIE["ck_lfdnr"]; + + +if ($_POST[vorlesung] == ""){ // Fehler, falls Pflichtfelder unausgefüllt +echo " + + + + +Eingabefehler + + + + + + +
+
+ + + + + + + + + + + + + + + + + +
+ +
+ Eingabefehler
+
+
+
+

Es müssen mindestens die Pflichtfelder ausgefüllt werden! +

+

+
+

+

+

+

+

+


+

+
+
+ + +
+
+
+ +"; +exit; +} + +$result2 = $db->query("SELECT 1 + FROM bew_wunsch + WHERE doz_uid='$doz_uid1' + AND lfd_nr = '$lfdnr'"); +$row3 = $result2->fetch_array(); + +$heute = mktime(date("H"), date("i"), date("s"), date("m"), date("d"), date("Y")); // heutiges Datum & Zeit: http://de2.php.net/manual/de/function.date.php +$heuteformat = date("Y-m-d H:i:s", $heute); // Formatierung, wie es vor dem Dateinamen erscheinen soll + + +if($row3[0] != 1){ + +$sql = $db->query("INSERT INTO bew_wunsch ( doz_uid + , lv_name + , studiengang + , ag + , jahrgang + , lv_art + , teilnehmer + , lfd_nr + , datum + ) + VALUES + ( '$doz_uid1' + , '$_POST[vorlesung]' + , '$_POST[stg]' + , '$_POST[ag]' + , '$_POST[jahrgang]' + , '$_POST[art]' + , '$_POST[anz]' + , '$lfdnr' + , '$heuteformat' + ) + "); + +}else{ +$sql = $db->query("UPDATE bew_wunsch + SET doz_uid = '$doz_uid1' + , lv_name = '$_POST[vorlesung]' + , studiengang = '$_POST[stg]' + , ag = '$_POST[ag]' + , jahrgang = '$_POST[jahrgang]' + , lv_art = '$_POST[art]' + , teilnehmer = '$_POST[anz]' + , lfd_nr = '$lfdnr' + , datum = '$heuteformat' + WHERE doz_uid='$doz_uid1' + AND lfd_nr = '$lfdnr' + "); +} + + +if($sql) +{ +echo " + + + + +Einbindung + + + + + + +
+
+ + + + + + + + + + + + + + + + + +
+ +
+ Einbindung
+
+
+
+

Der Bewertungswunsch wurde abgegeben! +

+

+
+

+

+

+

+

+


+

+
+
+ + +
+
+
+ +"; +}else{ +echo " + + + + +Einbindung fehlgeschlagen + + + + + + +
+
+ + + + + + + + + + + + + + + + + +
+ +
+ Einbindung fehlgeschlagen
+
+
+
+

Der Administrator wurde nicht eingebunden!
Es trat ein interner Fehler auf!
+

+

+
+

+

+

+

+

+


+

+
+
+ + +
+
+
+ +"; +} + + +} +?> diff --git a/export.php b/export.php new file mode 100755 index 0000000..bf4e9a5 --- /dev/null +++ b/export.php @@ -0,0 +1,83 @@ +query($sql) + or die("Couldn't execute query:
" . mysql_error(). "
" . mysql_errno()); + +$now_date = date('d.m.Y-Hi'); + +//header info for browser +header('Content-Encoding: UTF-8'); +header("Content-type: text/csv; charset=UTF-8"); +#header("Content-Type: text/comma-separated-values;charset=UTF-8"); +echo "\xEF\xBB\xBF"; +header("Content-Disposition: attachment; filename=export_bewertung_$now_date.csv"); //header("Content-Disposition: attachment; filename=database_dump.$file_ending"); +header("Pragma: no-cache"); +header("Expires: 0"); + +/* +if ($Use_Title == 1){ +echo("$title\n"); +} +*/ + +//define separator (defines columns in excel & tabs in word) +$sep = ";"; //tabbed character + +//start of printing column names as names of MySQL fields +for ($i = 0; $i < mysqli_num_fields($result); $i++) { +echo mysqli_fetch_field_direct($result,$i)->name . ";"; +} +print("\n"); +//end of printing column names + +//start while loop to get data +/* +note: the following while-loop was taken from phpMyAdmin 2.1.0. +--from the file "lib.inc.php". +*/ + while($row = $result->fetch_array()) + { + //set_time_limit(60); // HaRa + $schema_insert = ""; + for($j=0; $j \ No newline at end of file diff --git a/fragebogen.php b/fragebogen.php new file mode 100755 index 0000000..efc2d21 --- /dev/null +++ b/fragebogen.php @@ -0,0 +1,321 @@ +query("SELECT antwort + FROM bew_fragebogen + WHERE doz_uid='$doz_uid1' + "); + +$row3 = $result2->fetch_array(); + +echo " + + + + +Administrator anlegen + + + + + + + + +
+
+ + + + + + + + + + + + + + + + +
+ +
+ Angaben zum Fragebogen
+
+
+ +
+ + + + +
+ Ich bin bereit beide Fragebögen einzusetzen
+ und damit zwei Befragungen durchzuführen. +
+
+
+ Nein       + Ja +
+

+ +

+
+
+
+ + +
+
+
+ +"; + +break; +case "bew": +$db = dbconnect(); + + + +if ($_POST[fragebogen] == ""){ // Fehler, falls Pflichtfelder unausgefüllt +echo " + + + + +Eingabefehler + + + + + + +
+
+ + + + + + + + + + + + + + + + + +
+ +
+ Eingabefehler
+
+
+
+

Es muss eine Antwort abgegeben werden! +

+

+
+

+

+

+

+

+


+

+
+
+ + +
+
+
+ +"; +exit; +} + +$result2 = $db->query("SELECT 1 + FROM bew_fragebogen + WHERE doz_uid='$doz_uid1' + "); + +$row3 = $result2->fetch_array(); + +if($row3[0] != 1){ + +$sql = $db->query("INSERT INTO bew_fragebogen ( doz_uid + , antwort + ) + VALUES + ( '$doz_uid1' + , '$_POST[fragebogen]' + ) + "); + +}else{ +$sql = $db->query("UPDATE bew_fragebogen + SET doz_uid = '$doz_uid1' + , antwort = '$_POST[fragebogen]' + WHERE doz_uid='$doz_uid1' + "); +} + +if($sql) +{ +echo " + + + + +Einbindung + + + + + + +
+
+ + + + + + + + + + + + + + + + + +
+ +
+ Einbindung
+
+
+
+

Ihre Antwort wurde abgegeben! +

+

+
+

+

+

+

+

+


+

+
+
+ + +
+
+
+ +"; +}else{ +echo " + + + + +Einbindung fehlgeschlagen + + + + + + +
+
+ + + + + + + + + + + + + + + + + +
+ +
+ Einbindung fehlgeschlagen
+
+
+
+

Der Administrator wurde nicht eingebunden!
Es trat ein interner Fehler auf!
+

+

+
+

+

+

+

+

+


+

+
+
+ + +
+
+
+ +"; +} + + +} +?> diff --git a/hauptframe.php b/hauptframe.php new file mode 100755 index 0000000..121eba4 --- /dev/null +++ b/hauptframe.php @@ -0,0 +1,57 @@ + + + + +Willkommen + + + + + + +
+
+ + + + + + + + + + + + + + + + + +
+   +
+
Herzlich Willkommen
+
+
+
+

Sie befinden sich im Bewertungssystem für Dozenten
+ der Fachhochschule Ludwigsburg!

Bitte halten sie Ihre Daten aktuell

+

Treffen Sie im linken Menü bitte Ihre Auswahl!

+


+

+
+
+ + +
+


+  

+
+
+ +"; +?> \ No newline at end of file diff --git a/images/Font.txt b/images/Font.txt new file mode 100755 index 0000000..fc65b65 --- /dev/null +++ b/images/Font.txt @@ -0,0 +1,4 @@ +Button Schriftart + +Verdana fett 12 +Anti Aliasing \ No newline at end of file diff --git a/images/b_abschicken.gif b/images/b_abschicken.gif new file mode 100755 index 0000000..39302b3 Binary files /dev/null and b/images/b_abschicken.gif differ diff --git a/images/b_login.gif b/images/b_login.gif new file mode 100755 index 0000000..c46a027 Binary files /dev/null and b/images/b_login.gif differ diff --git a/images/blank.gif b/images/blank.gif new file mode 100755 index 0000000..ef3e502 Binary files /dev/null and b/images/blank.gif differ diff --git a/images/box_bottom.gif b/images/box_bottom.gif new file mode 100755 index 0000000..485b3db Binary files /dev/null and b/images/box_bottom.gif differ diff --git a/images/box_e1.gif b/images/box_e1.gif new file mode 100755 index 0000000..01165dc Binary files /dev/null and b/images/box_e1.gif differ diff --git a/images/box_e1a.gif b/images/box_e1a.gif new file mode 100755 index 0000000..6c77755 Binary files /dev/null and b/images/box_e1a.gif differ diff --git a/images/box_e2.gif b/images/box_e2.gif new file mode 100755 index 0000000..195e00b Binary files /dev/null and b/images/box_e2.gif differ diff --git a/images/box_e2a.gif b/images/box_e2a.gif new file mode 100755 index 0000000..ee40cfc Binary files /dev/null and b/images/box_e2a.gif differ diff --git a/images/box_e3.gif b/images/box_e3.gif new file mode 100755 index 0000000..f48cd70 Binary files /dev/null and b/images/box_e3.gif differ diff --git a/images/box_e4.gif b/images/box_e4.gif new file mode 100755 index 0000000..8db3155 Binary files /dev/null and b/images/box_e4.gif differ diff --git a/images/box_l.gif b/images/box_l.gif new file mode 100755 index 0000000..9d50c32 Binary files /dev/null and b/images/box_l.gif differ diff --git a/images/box_r.gif b/images/box_r.gif new file mode 100755 index 0000000..2b03b5e Binary files /dev/null and b/images/box_r.gif differ diff --git a/images/box_top.gif b/images/box_top.gif new file mode 100755 index 0000000..c000ed4 Binary files /dev/null and b/images/box_top.gif differ diff --git a/images/box_top1.gif b/images/box_top1.gif new file mode 100755 index 0000000..f0d5356 Binary files /dev/null and b/images/box_top1.gif differ diff --git a/images/drop.png b/images/drop.png new file mode 100755 index 0000000..6fc4d3b Binary files /dev/null and b/images/drop.png differ diff --git a/images/drop_grey.png b/images/drop_grey.png new file mode 100755 index 0000000..1a769f7 Binary files /dev/null and b/images/drop_grey.png differ diff --git a/images/edit.png b/images/edit.png new file mode 100755 index 0000000..05711a0 Binary files /dev/null and b/images/edit.png differ diff --git a/images/edit_grey.png b/images/edit_grey.png new file mode 100755 index 0000000..2a146c8 Binary files /dev/null and b/images/edit_grey.png differ diff --git a/images/export.gif b/images/export.gif new file mode 100755 index 0000000..891f86a Binary files /dev/null and b/images/export.gif differ diff --git a/images/i_login.gif b/images/i_login.gif new file mode 100755 index 0000000..2807445 Binary files /dev/null and b/images/i_login.gif differ diff --git a/images/ja.gif b/images/ja.gif new file mode 100755 index 0000000..d54c74b Binary files /dev/null and b/images/ja.gif differ diff --git a/images/left.gif b/images/left.gif new file mode 100755 index 0000000..decaa82 Binary files /dev/null and b/images/left.gif differ diff --git a/images/left_first.gif b/images/left_first.gif new file mode 100755 index 0000000..47b4355 Binary files /dev/null and b/images/left_first.gif differ diff --git a/images/left_first_grey.gif b/images/left_first_grey.gif new file mode 100755 index 0000000..45c3caa Binary files /dev/null and b/images/left_first_grey.gif differ diff --git a/images/left_grey.gif b/images/left_grey.gif new file mode 100755 index 0000000..2ef4b02 Binary files /dev/null and b/images/left_grey.gif differ diff --git a/images/nein.gif b/images/nein.gif new file mode 100755 index 0000000..c5828cc Binary files /dev/null and b/images/nein.gif differ diff --git a/images/right.gif b/images/right.gif new file mode 100755 index 0000000..1d54d1c Binary files /dev/null and b/images/right.gif differ diff --git a/images/right_grey.gif b/images/right_grey.gif new file mode 100755 index 0000000..436774e Binary files /dev/null and b/images/right_grey.gif differ diff --git a/images/right_last.gif b/images/right_last.gif new file mode 100755 index 0000000..537a35f Binary files /dev/null and b/images/right_last.gif differ diff --git a/images/right_last_grey.gif b/images/right_last_grey.gif new file mode 100755 index 0000000..f73535b Binary files /dev/null and b/images/right_last_grey.gif differ diff --git a/images/sidebox-bar-left.gif b/images/sidebox-bar-left.gif new file mode 100755 index 0000000..f94520e Binary files /dev/null and b/images/sidebox-bar-left.gif differ diff --git a/images/sidebox-bar-px.gif b/images/sidebox-bar-px.gif new file mode 100755 index 0000000..00777b5 Binary files /dev/null and b/images/sidebox-bar-px.gif differ diff --git a/images/sidebox-bar-right.gif b/images/sidebox-bar-right.gif new file mode 100755 index 0000000..9120f3a Binary files /dev/null and b/images/sidebox-bar-right.gif differ diff --git a/images/sidebox-bottom.gif b/images/sidebox-bottom.gif new file mode 100755 index 0000000..4f5dd55 Binary files /dev/null and b/images/sidebox-bottom.gif differ diff --git a/images/sidebox-title-bg.gif b/images/sidebox-title-bg.gif new file mode 100755 index 0000000..b3b1b2e Binary files /dev/null and b/images/sidebox-title-bg.gif differ diff --git a/images/sidebox-title-left.gif b/images/sidebox-title-left.gif new file mode 100755 index 0000000..21219c8 Binary files /dev/null and b/images/sidebox-title-left.gif differ diff --git a/images/sidebox-title-left1.gif b/images/sidebox-title-left1.gif new file mode 100755 index 0000000..c43bafe Binary files /dev/null and b/images/sidebox-title-left1.gif differ diff --git a/images/sidebox-title-right.gif b/images/sidebox-title-right.gif new file mode 100755 index 0000000..eaf683b Binary files /dev/null and b/images/sidebox-title-right.gif differ diff --git a/images/suchen.gif b/images/suchen.gif new file mode 100755 index 0000000..868a8d4 Binary files /dev/null and b/images/suchen.gif differ diff --git a/images/termin_erf.gif b/images/termin_erf.gif new file mode 100755 index 0000000..33012ec Binary files /dev/null and b/images/termin_erf.gif differ diff --git a/images/veranst_bearb.gif b/images/veranst_bearb.gif new file mode 100755 index 0000000..4ce605b Binary files /dev/null and b/images/veranst_bearb.gif differ diff --git a/images/veranst_erf.gif b/images/veranst_erf.gif new file mode 100755 index 0000000..781c210 Binary files /dev/null and b/images/veranst_erf.gif differ diff --git a/images/zurueck.gif b/images/zurueck.gif new file mode 100755 index 0000000..ce221f3 Binary files /dev/null and b/images/zurueck.gif differ diff --git a/index.php b/index.php new file mode 100755 index 0000000..5c809e9 --- /dev/null +++ b/index.php @@ -0,0 +1,545 @@ +query("SELECT wert1, wert2 FROM parameter WHERE pid='1'"); +$uhd = $ansp->fetch_array(); +$ansprechpart = "$uhd[wert1]"; // Ansprechpartner bei Probleme +$helpmail = "$uhd[wert2]"; // Kontaktmailadresse bei Problemen + +if (isset($_GET['action'])) + $action = $_GET['action']; +else + $action = ""; + +switch($action){ +default: + +echo" + + + + + +Login Bewertungssystem + + + + + + + + + + + +
 
+
+ + + + + + + + + + + + + + + + + +
+ + +
+ Bewertungssystem für Dozenten
+
+
+
+
    +
  • Bitte beantragen Sie zunächst Ihre Benutzerkennung
  • +
  • Wenn Sie schon eine Benutzerkennung haben, können Sie sich nachfolgend anmelden
  • + +
+

+

+

+

+
+ + + + + + + + + + + + +
+ Benutzername + +
+ Passwort + +
+
+
+


+

+
+
+ + +
+


+  

+
+
+ +"; + +break; +case "anmeld": + +$db = dbconnect(); + +$result = $db->query("SELECT doz_uid, doz_pwd FROM doz where doz_uid=\"". $_POST['doz_uid']."\""); +$row = $result->fetch_array(); + + + +// Abfrage, was tun wenn Felder leer sind bzw. Passwort falsch ist +if ($_POST['doz_uid'] == "" or $_POST['doz_pwd'] == "") +{ +echo " + + + + + +Login Proseminare + + + + + + +
+
+ + + + + + + + + + + + + + + + + +
+ + +
+ Fehlerhafte Eingabe
+
+
+
+

Es müssen alle Felder ausgefüllt werden +

+

+
+

+

+

+

+

+


+

+
+
+ + +
+
+
+ +"; +exit; +} + +if ($_POST['doz_uid'] != $row['doz_uid']) { +echo" + + + + +Benutzername unbekannt + + + + + + +
+
+ + + + + + + + + + + + + + + + + +
+ + +
+ Benutzername unbekannt
+
+
+
+

Ber Benutzername ist im System nicht vorhanden
+ Bei Fragen wenden Sie sich bitte an + $ansprechpart
+

+

+
+

+

+

+

+

+


+

+
+
+ + +
+
+
+ +"; +exit; +} + +$passwd = md5($_POST['doz_pwd']); +if ($passwd != $row[doz_pwd]){ + +setcookie("doz_uid1",""); +setcookie("doz_uid1",$row[doz_uid]); + +echo " + + + + +Passwort falsch + + + + + + +
+
+ + + + + + + + + + + + + + + + + + +
+ + +
+ Passwort falsch
+
+
+
+

Das eingegebene Passwort ist falsch!

+ Sie können sich ein neues Passwort an Ihre
FH-Mailadresse schicken lassen: Neues Passwort +
+
+ Bei weiteren Problemen wenden Sie sich bitte
+ an $ansprechpart

+

+
+

+

+

+

+

+


+

+
+
+ + +
+
+
+ +"; +exit; +} + +setcookie("doz_uid1",""); +setcookie("doz_uid1",$row[doz_uid]); + + echo " + + "; + +break; +case "pass_gen": + +$doz_uid1=$_COOKIE["doz_uid1"]; + +$pool = "qwertzupasdfghkyxcvbnm"; +$pool .= "23456789"; +$pool .= "WERTZUPLKJHGFDSAYXCVBNM"; + +srand ((double)microtime()*1000000); +for($index = 0; $index < 7; $index++) +{ + $pass_word .= substr($pool,(rand()%(strlen ($pool))), 1); +} + +$new_pw_md5=md5($pass_word); + +$sql = $db->query ("UPDATE doz SET doz_pwd='$new_pw_md5' WHERE doz_uid='$doz_uid1'"); + +// Nachricht über Passwortrücksetzung: Hinzugefügt 19.09.2006 + $result2 = $db->query("SELECT doz_uid, doz_titel, doz_vorname, doz_name, doz_mail FROM doz WHERE doz_uid='$doz_uid1'"); + $row2 = $result2->fetch_array(); + + $empfaenger = "$row2[doz_mail]"; + $betreff = "Kurssystem: Passwort zurückgesetzt"; + $text = " + + + Passwort zurückgesetzt + + + + Guten Tag $row2[doz_titel] $row2[doz_vorname] $row2[doz_name]!

+ Sie haben Ihr Passwort im Kurssystem zurückgesetzt!
+ Nachfolgend finden Sie Ihre neuen Zugangsdaten: +
+
+ + + + + + + + + +
+ + Benutzerkennung: + + + + $row2[doz_uid] + +
+ + Passwort: + + + + $pass_word + +
+
+ Bitte beachten Sie, dass zwischen Groß- und
+ Kleinschreibung unterschieden wird. +

+ Ändern Sie bitte zu Ihrer eigenen Sicherheit das
+ Passwort nach dem ersten Login. +

+ Diese Mail wurde automatisch generiert!
+ Antworten Sie daher nicht auf diese Mail
+
+ Vielen Dank + + "; + + + $headers = "MIME-Version: 1.0\r\n"; + $headers .= "Content-type: text/html; charset=utf-8\r\n"; + + $return = @mail($empfaenger, $betreff, $text, $headers); + +// ENDE Nachricht über Passwortrücksetzung + +if($return){ +echo " + + + + + +Login Wahlpflichtfachsystem + + + + + + +
+
+ + + + + + + + + + + + + + + + + +
+ + +
+ Bestätigung
+
+
+
+

Mailversand!

+ Ihr neues Passwort wurde an $row2[doz_mail] geschickt. +

+
+

+

+

+

+

+


+

+
+
+ + +
+
+
+ +"; +exit; +}else{ +echo " + + + + + +Login Wahlpflichtfachsystem + + + + + + +
+
+ + + + + + + + + + + + + + + + + +
+ + +
+ Versandfehler
+
+
+
+

Versandfehler!

+ Das Passwort konnte nicht verschickt werden! +
+
+ Bitte wenden Sie sich an $ansprechpart

+

+
+

+

+

+

+

+


+

+
+
+ + +
+
+
+ +"; +exit; +} + + +} // Ende IF von Action Abfrage +?> diff --git a/index_doz.htm b/index_doz.htm new file mode 100755 index 0000000..9d0f386 --- /dev/null +++ b/index_doz.htm @@ -0,0 +1,23 @@ + + + +Bewertungssystem der Fachhochschule Ludwigsburg + + + + + + + + + + <body> + + <p>Diese Seite verwendet Frames. Frames werden von Ihrem Browser aber nicht + unterst&uuml;tzt.</p> + + </body> + + + + \ No newline at end of file diff --git a/logo-trans.gif b/logo-trans.gif new file mode 100755 index 0000000..00c6fb7 --- /dev/null +++ b/logo-trans.gif @@ -0,0 +1,35 @@ +GIF89aA ‚ ÷ÿ ÿÿÿÆÆÆ½ÆÆ½ÆÎµ½Æµ½Î­µÆBœœ­ÖŒœÆ„”½!B”œ¥½Rkµ!Bœµ½Ö­µÎ¥­Æ”œµ„”Æs„½1Jœ)B”œ¥Æk{µcs­Zk­Rc¥)Bœ¥­Î”œ½Œ”µœ¥Î{„­csµJZœRc­9J””œÆŒ”½„ŒµBRœ9Jœ1B”)9ŒŒ”Æ„Œ½{„µs{­{„½)9”„ŒÆs{µks­Zc¥ksµck­ckµZc­RZ¥JRœJR¥BJœ9B”9Bœ19Œ19”)1Œµµ½½½Æ­­½µµÆ½½ÎµµÎ¥¥½­­ÆµµÖ­­Î¥¥Æœœ½­­Ö¥¥ÎœœÆ””½ŒŒµœœÎ””ÆŒŒ½{{­ŒŒÆ„„½ssµkk­cc¥cc­RRœZZ­RR¥99Œ99”11„11Œ91„B9ŒJ9ŒJ9„J1„½µÎR9„R1„Z9„”{­Z9{Z1„c9„Z1{c9{c1{­”µk9{k1{s9{k1ss1{½¥½µœµµ”µµŒµ¥{¥ŒRŒ{9{s1ss)s{1s”RŒ½”µµŒ­­„¥„1s½œµ„9sÆ¥½­kœŒ1s„)kŒ9s„1kÆ”µ¥ZŒ”1sŒ)kÆ­½”9sŒ1k”)kÆœµ”1kœ)kœ1k”)cΜµ¥1kœ)cƵ½Æ¥µ­1k¥)cΔ­¥1cµ1k­)cÆœ­ÞŒ­­1cµ)c­!ZÎ¥µµ1c½)cµ!Z猭ބ¥½1c­)ZÆ)cÎ)cÞ”­ç„¥Æ1cµ)Z½)ZÞŒ¥Î1cÆ)ZÖœ­Ö1cÎ)ZÖ)ZÆ!RÎ!R猥Æ1ZÎ1Z½)RÆ)RÞ)Zç)ZÖ!RÞ!RÖJέµç9cÖ1ZÞ1ZÎ)RÖ)Rç!RÞJçJÞBç1Zï1ZÞ)Rç)RÖ!JÞ!JÞBçBÖ9ZÞ9Zç9ZÞ1Rï)Rç!JçBïBç9ç1RÞ)Jç!Bç1ï!Bç9ç1ï1 ÀÀÀ!ù ÿ , A ‚ @ÿ ÿ 80 «jÞª5SÈp¡Ã†JŒÈЛ7VjÜ8°H­p CŠNœ¸’ÙJ’\¹’UŽ0;"óF,U1Vè\1f§1+‚èÌ)4çN1neâT茅 u8¥ªöíע¼Ø)tç + hTÅ{DzìJoÜ®qbcÁ‚L}N¬°á$ÀUpa±¨N¡b<ÅKg¶°a‘ͼzºc”€]šd<á×ï +!+2;Ì™3»U£j•0ŠŽ+MŠ (ÔëW1·Ö¥ìL{ä»w~,!q$ ‘S’\PäFÀ<ƒŽ)JGÕíÚ´Y ÁÃ'waÚ]´X'PËß½"ÿßiÏ1Î&W Àªý£Ùk×’ñ²E¿T)ú©æ³v­³UöÂ +t’ä€ñK ‚t ‚ € 4 +BwÒƒ +¤`…þ²^† À +…Ö&ˆþBb‰a˜aªÄbaÙˆã!ŠÿH8cgÙü‡â†"1¶xòHNáÔVNmq° O‰qÆž´ 5Þ´”‚ªýfygÁtT’Ì5ßTãYîlV +5ܴÍ7Éd‡m-pÆ'ÌxòC_‘QLvõ TW}é$I:díZÖàa <Q„>´`—@àÀf] q†/ê8jV6í\’À +,l`— +`ÿgŸ> +5j£¦²¤)ÐPÄ  +  =¹¶B·¶ã5‰‚“ ;XÚOÜžU;° Þk¦Ä#25ßdò°ÜÀC±Ђ +Ë^fA!·lN$ˆB 'ìð‚¥ø`¶N èѳ8ÙHÀ2( PP*ˆ²ŒêmÈ,ð8Ež€ À\ÐB:ÀÑý L:‚$‘¾“í~;À]rЂ'd$ #S¸¾2†^Xïdò@D .ðÛÑ`Øy‰ ÿº'ºä epwxF sõŽ@Á. @pT 9G—± p¨ƒ,„aȲ™Î€£G;!¡9CœÀܲ„&Z}Ë+XTI’% âÈ *! 8ˆ¡ŒTDBn¨ãWfˆG ueÙŠ(V¡AmäˆAˆv3šMLEûË×Ô³pÀr—½T%ˆDIJ–ÙA"òFÖDÆ?•HháXæÉœù¢õ„|‘ÉnF²gòòfxËf!¿y³_þˆœ-f5{j2d=ËF-ĉ Qà²góÄ‘¾zùÿ Üeˆ•àDã%­éGmIuá/ˆ7§J3Híôç-WBo@ƒ¶E&7 ! +îúhÚöÀˆPÄ‚Ó@Ç$AR ‰"“!ÉÆ×lÁ 8œáu+à€‚†38ÅD9ƒ ꆥ‘ôs á G1RÁ 7àq§!ì “…8ìaŠPĿڒ†=„X;ê*uQŽPÀa”ßêÊw–´G.‰I+˜Ò-Z1/±a·x,\Ê»``‰Š*NÙ ˆ¯ò¢ˆ-ÕÚ1T " +o]Pá‹Aä„opÞÄœP!€ª­;qC+Ž‘Žo ò,hi‡2:ÙQÆ®+PA +ÀWÿÜŽ ]ÏWΠ +®ô0çH '"÷<Ãð´“",AÒÓÉṙ†[œ–Aà¨F:–§á‰¢yAo8"€)Ü\`ª^®®Á +wDL.èÕj FÛ~à2XÁy¿âÒ>LÞhG/œ²øf8Ðì?Fa‚Žœ(¸Áïxè³nì ¡R£hÀ¦ €*8RŽçG%ŽÏ@O?`€ ®`ƒ+$—ápÒcÿøÀePà› Hq+—“ðtk˜¤eâØ†z”["Œâ 88A¤ ‚0ý…¼Ý²©„Q„)ð yZ‰ÁА€0<è/‰Ÿ%Á)Ø ‡EÈ@ p»Yå6Í#µ£´$¡–: +–›‘"Ô@ŒÔo‘ Žxý7°( žèk)@ wGàAù@e6 Ùb6N‡#&p» \áP˜Ž@FQÎÅw_ƒ5ԁíÃƒ<`°#Ñ á qô]O2׊tÄÁ…‘´HRKœ  P0As€0\`r€æTAÚÓ­#c‰G/2áßÈã`u¬PÛ‚Ü›/BÿéIÉcÀAn bÀÉp†YÈz$â8„ R£3 9¦ž)[óð9Z ï0¶YÔ…¿tÔ`Dw¥+ôÀžw­gè…ÒYÂ?ÿí ðF,îà¥E^&ØŒÜ3™!£²œb¦5µ±IeØ"[5Š;‚ˆâÇ×¶)o$­˜PD< +ҏ~4xˆD+–ÑÃà­ä{#(×åbðBÀ 1Ú Á—láh)×tv?¬Fq¯™Ãn¦z €ðÆÄ|sÑ™{®Íäf)‰ýÄxϱ“Ôža³—™ð_:4%_ìøÿLþÉŠ"{²úù"¾ÈrvÉ{r³ç Ó>hǸ¿JÜ3“àÿ§æe†þîÇ3í_¥ø—ÜÎôçËüÛ·?óÙI~†áüº'KÒÇ1Á€Û2¹b|¨ Õ3Ë £Lø´€Y1€ØêWL'áW A‚ 8‚琺  ;ÐVÂP + ¤àžàaÖq‚C£CC±i-*Ñ4Ö4¿¤eŸÓ áÐà ‰`<&fü6‰€ +["ñ° +]¥]F7kÒRq’áà +É0 +‰ *”QÈ` î$žõQt¨V(q§s ©à ‚°\ðc>æ#Š0 +º€ +á âÐ…¿ —%†Ûÿ2,ç +±Ó Í +;7%W5$Ü\u#g#Z|f3’ÅTeS#^59;aV¿EZu“7†e¢ø]c¥6’XõTaxU8ÙõKi#Z;’G´xU†‹qåQ—•=6Ä6fÄVZ–Ø8qœe0†_¨eP¢Œ…#W`Yó¤eJ•‹u³ +›àxŽ¿%Žu3‡Âˆ‹¤Ø6»¨T8ꏧ˜= 8¬XŠN…Z׆¬•96†œsPCY³ˆqã[eñ‹gŒOÃ[a²"1‹»¨Xk²ß…Óø.ö…„ 99©‹ùhW¡( ÈðŽQÓ̈%ªøõHUê &—Uc +Y +*=É5N卿tÑ iFñxŽ!I$Õ0V…‘ªø“ÒhFÕ æÈMWå8ï AXy•ZI߀6L7 ; \ No newline at end of file diff --git a/logout_doz.php b/logout_doz.php new file mode 100755 index 0000000..93146f6 --- /dev/null +++ b/logout_doz.php @@ -0,0 +1,64 @@ + + + + +Zugang gesperrt + + + + + + +
+
+ + + + + + + + + + + + + + + + + +
+ +
+ Abmeldung
+
+
+
+

Der Logoutvorgang wurde erfolgreich abgeschlossen! +

+

+
+

+

+

+

+

+


+

+
+
+ + +
+
+
+ +"; +?> diff --git a/menuframe.php b/menuframe.php new file mode 100755 index 0000000..8be1a11 --- /dev/null +++ b/menuframe.php @@ -0,0 +1,111 @@ + + + + + +Menu + + + + + + + + + + + + + + + +
+ + + + + + +
+ +   Menu +
+
+ + + + + + +
  +

+

+
+ + + + +
+

+ + 1. Schritt
+ + · + Persönliche Daten
+ +
+ + + 2. Schritt
+ + · + 1. Hauptwunsch
+ + · + 2. Hauptwunsch
+ +
+ + · + 1. Ersatzwunsch
+ + · + 2. Ersatzwunsch
+ + +


+ · + Kennwortwechsel
+ + +
+ ·
+ Logout +
+
+
+
+ + + + +
+
+
+ + + +"; +?> \ No newline at end of file diff --git a/pers_daten_doz.php b/pers_daten_doz.php new file mode 100755 index 0000000..00af950 --- /dev/null +++ b/pers_daten_doz.php @@ -0,0 +1,293 @@ +query("SELECT doz_funktion, doz_anrede, doz_name, doz_vorname, doz_strasse, doz_plz, doz_ort, doz_titel, doz_mail FROM doz where doz_uid=\"$doz_uid1\""); +$row = $result->fetch_array(); +echo " + + + + +Daten vervollständigen + + + + + + +
+
+ + + + + + + + + + + + + + + + +
+ +
+ Daten vervollständigen
+ Halten Sie bitte Ihre Daten aktuell
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Titel:* + + +
+ Funktion:*
+
+ +
+ Anrede:*
+
+ +
+ Vorname:*
+
+ +
+ Nachname:* + +
+ E-Mail: + + $row[doz_mail]
+   + +   +
+ * Pflichtfelder +
+   + +   +
+ +
+
+ + +
+
+
+ +"; + +break; +case "persdat": + + +if ($_POST[Titel] == "" or $_POST[Funktion] == "" or $_POST[Anrede] == "" or $_POST[Vorname] == "" or $_POST[Nachname] == "" ){ +echo" + + + + +Eingabefehler + + + + + + +
+
+ + + + + + + + + + + + + + + + + +
+ +
+ Eingabefehler
+
+
+
+

Es müssen alle Felder ausgefüllt werden! +

+

+
+

+

+

+

+

+


+

+
+
+ + +
+
+
+ +"; + +exit; +} + +$db = dbconnect(); +$sql = $db->query ("UPDATE doz SET + doz_funktion='$_POST[Funktion]' + , doz_anrede='$_POST[Anrede]' + , doz_vorname='$_POST[Vorname]' + , doz_name='$_POST[Nachname]' + , doz_titel='$_POST[Titel]' + WHERE doz_uid='$doz_uid1' + "); + +echo " + + + + + +Änderungen gespeichert + + + + + + +
+
+ + + + + + + + + + + + + + + + + +
+ +
+ Änderungen gespeichert
+
+
+
+

Die Änderungen wurden gespeichert! +
+
+

+
+
+ + +
+
+
+ +"; +} // Ende Action +?> diff --git a/styles_pc.css b/styles_pc.css new file mode 100755 index 0000000..e3b3e52 --- /dev/null +++ b/styles_pc.css @@ -0,0 +1,119 @@ +font.hd { /* Überschrifteinstellungen */ + font-family : Verdana,Arial,Helvetica,sans-serif; + font-size : 17px; + font-weight : bold; + color : #002276; +} + +.sh { /* Subheader */ + font-weight : normal; + font-size : 12px; + color : rgb(101, 101, 101); + font-family : Arial,Helvetica,sans-serif; +} + +li { /* Aufzählungen */ + font-weight : normal; + font-size : 12px; + font-family : Arial,Helvetica,sans-serif; +} + +.formdesc { + padding-left : 10px; + width : 33%; + color : rgb(255, 255, 255); + background-color : rgb(146, 155, 171); + font-weight : bold; +} + +.login { + background-color : #f1f2f6; +} + + +a { + font-family : verdana, arial; + font-weight : normal; + color : #000066; +} + + +body { + font-family : verdana, arial; + font-size : 9pt; + color : #000000; +} + + + +td { + font-family : verdana, arial; + font-size : 9pt; + color : #000000; +} + + +h1 { + font-family : verdana, arial; + font-size : 8pt; + font-weight : bold; +} + + +.uberschrift { + font-family : verdana, arial; + font-size : 12pt; + font-weight : bold; + color : #006699; +} + + +.bemerkung { + font-family : verdana, arial; + font-size : 8pt; + font-weight : bold; + color : #FF0000; + text-transform : uppercase; /* Großbuchstaben */ +} + + +.farbe { /* Hintergrundsfarbe im Titel bei Export Word, Aushänge */ + background-color : #6487DC; +} + + +.contentfarbe { /* Hintergrundsfarbe in Tabellen bei Inhalten */ + background-color : #DEDEDE; +} + + +.titel { /* Kopfframe */ + font-weight : bold; + text-decoration : none; + font-family : verdana, arial; + font-size : 16pt; + color : #FFFFFF; +} + + +.footer { /* Fußzeile (Copyright) */ + text-decoration : none; + font-family : verdana, arial; + font-size : 8pt; +} + + +.nav_link { /* Hyperlinks in der Navigation */ + text-decoration : none; + font-family : verdana, arial; + font-size : 8pt; + height : 13pt; +} + + +.nav_head { /* Überschriften in der Navigation */ + font-weight : bold; + text-decoration : none; + font-family : verdana, arial; + font-size : 9pt; +} \ No newline at end of file diff --git a/topframe.php b/topframe.php new file mode 100755 index 0000000..4fd101f --- /dev/null +++ b/topframe.php @@ -0,0 +1,32 @@ +query("INSERT INTO bew_dozlog (Datum, IP, uid) VALUES ('$datum', '$ip', '$doz_uid1')"); +// Ende Log Datei +echo" + + + + + + +Kurs + + + + +

Bewertungssystem

+ + +"; +?> \ No newline at end of file diff --git a/vorlage export.xls b/vorlage export.xls new file mode 100755 index 0000000..47f821d --- /dev/null +++ b/vorlage export.xls @@ -0,0 +1 @@ +ÐÏࡱá >  þÿ   +  þÿÿÿ þÿÿÿ * ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ   ·(ÍÉ€  á  °Á  â \ p  Alexander Schwarz B  °a À =  œ         ¯ ¼ =  Ð |Gî/8  X@    "     · Ú  1  È ÿ A r i a l 1  È ÿ A r i a l 1  È ÿ A r i a l 1  È ÿ A r i a l 1  È    A r i a l 1  ð  ÿ¼  A r i a l 1  È  ÿ¼  A r i a l 1     Q ¼ T a h o m a 1    Q  T a h o m a 1     Q ¼  T a h o m a 3   # , # # 0 \ " ¬ " ; \ - # , # # 0 \ " ¬ " =   # , # # 0 \ " ¬ " ; [ R e d ] \ - # , # # 0 \ " ¬ " ?   # , # # 0 . 0 0 \ " ¬ " ; \ - # , # # 0 . 0 0 \ " ¬ " I  " # , # # 0 . 0 0 \ " ¬ " ; [ R e d ] \ - # , # # 0 . 0 0 \ " ¬ " q * 6 _ - * # , # # 0 \ " ¬ " _ - ; \ - * # , # # 0 \ " ¬ " _ - ; _ - * " - " \ " ¬ " _ - ; _ - @ _ - k ) 3 _ - * # , # # 0 \ _ ¬ _ - ; \ - * # , # # 0 \ _ ¬ _ - ; _ - * " - " \ _ ¬ _ - ; _ - @ _ -  , > _ - * # , # # 0 . 0 0 \ " ¬ " _ - ; \ - * # , # # 0 . 0 0 \ " ¬ " _ - ; _ - * " - " ? ? \ " ¬ " _ - ; _ - @ _ - { + ; _ - * # , # # 0 . 0 0 \ _ ¬ _ - ; \ - * # , # # 0 . 0 0 \ _ ¬ _ - ; _ - * " - " ? ? \ _ ¬ _ - ; _ - @ _ -  ¤  "Ja";"Ja";"Nein" ¥  "Wahr";"Wahr";"Falsch" ¦  "Ein";"Ein";"Aus"] § , [ $ ¬ - 2 ] \ # , # # 0 . 0 0 _ ) ; [ R e d ] \ ( [ $ ¬ - 2 ] \ # , # # 0 . 0 0 \ ) à  õÿ À à   õÿ ô À à   õÿ ô À à   õÿ ô À à   õÿ ô À à  õÿ ô À à  õÿ ô À à  õÿ ô À à  õÿ ô À à  õÿ ô À à  õÿ ô À à  õÿ ô À à  õÿ ô À à  õÿ ô À à  õÿ ô À à   À à   + õÿ ø À à   ) õÿ ø À à   ôÿ ô À à   õÿ ø À à   , õÿ ø À à   * õÿ ø À à     À à     À à     8  À “ €ÿ“ €ÿ“ €ÿ“ €ÿ“ € ÿ“ €ÿ“ €ÿ` …    BeispielŒ  1 1 ®     Á Á `i ë Z  ðR ð     3 ð ¿    À@ @ ñ   ÷ ü sI 0 2 Management und Recht - allgemeine Finanzverwaltung Funktion Anrede Titel Vorname Nachname E-Mail LV-Name LV-Kennung LV-Ort Studiengang LV-Art Teilnehmer Dozent Herrn Prof. Dr. A. A-Dozent adoz@fh-ludwigsburg.de Vorlesung A-DOZ1 A-DOZ LV1 Vorlesung A-DOZ2 A-DOZ LV2 B. B-Dozent bdoz@fh-ludwigsburg.de Vorlesung B-DOZ1 B-DOZ LV1 Vorlesung B-DOZ2 B-DOZ LV2 doz_titel doz_funktion doz_anrede doz_vorname doz_name doz_mail bezeichnung kuerzel studiengang bew_wunsch doz lv_art teilnehmer bew_vorlesungen AG Jahrgang ag jahrgangÿ 2   – … í Ü Y H Ö Å : )   ·(ÍÉ€   „ J"    d        ü©ñÒMbP?_   *  +  ‚   €  % ÿ   Á  ƒ  „  M  R Z L a s e r Ü $Sÿ  š 4d   X  X  A 4     PRIVâ0  ''' ' Ä  `  P4 \K  5º   ÿ  T RJPHAA‚‚ A D M I N I S T R A T O R  BAPHAA‚‚ ¡ " d     XXŠ<üý~ß?Š<üý~ß? U  } ’   }   Û    }   ¶   }   ¶   }   ’   }   ¶   } Û   } ’        : @    ÿ     ÿ     ÿ     ÿ     ÿ    ÿ    ÿ  ý  ¾              ý    ý     ý     ý     ý     ý     ý     ý     ý    ý   ý   ý   ý   , ý   - ý   ý     ý     ý     ý     ý     ý     ý     ~    ó³@~   ð?ý   ý     ý     ý     ý     ý     ý     ý     ~    ó³@~   ð?ý   ý     ý     ý     ý     ý     ý     ý     ~    õ³@~   ð?ý   ý     ý     ý     ý     ý     ý     ý     ~    õ³@~   ð?ý   ý   ý    ý   ! ý   " ý   # ý   $ ý   % ý  & ý  ) ý  * ý  . ý  / ý  ( ý   ( ý   ( ý   ( ý   ( ý   ( ý   + ý   + ý  ' ý  ' ý  ' ý  ' ý  ' ×  . Œ . Ä Œ Œ Œ Œ ¶ ì È  ðH  ð   ð0  ð(  ð  ð    ðx ¢ ð  “ ð6 € p ¾¿   X P ƒP ¿   ?  ¿ ð  ì ó  ž  < ð ] 4     @p ¾ðTX  hXMˆ¢œB O\<°LB=  ì  ð ¶  ª  < « Alexander Maier: Dozent, Dekan, Studiendekan*, Datenerfassungskraft*, Vorlagenbearbeiter*, Berichtserzeuger* * diesen Nutzertypen können keine LV-Daten zugewiesen werden<   f   Ÿ ª ä u p ì x  ðx ¢ ð  “ ð6 € xI¾¿   X P ƒP ¿   ?  ¿ ð   ^ ó  ‡ < ð ] 4     @xI¾LUX  •øUÓ¸6D°†ò¦`¯Ã X ì  ð ¶  $  < % Alexander Maier: Frau, Herr, Neutral<   f   q  $ / ì x  ðx ¢ ð  “ ð6 € ÈI¾¿   X P ƒP ¿   ?  ¿ ð   È ó  p < ð ] 4     @ÈI¾|VX  âFò;®¼J¼–ANŠø# X ì  ð ¶  ,  < - Alexander Maier: max. 50 Zeichen (KANN-Feld)<   f   ®  , ì x  ðx ¢ ð  “ ð6 € ,J¾¿   X P ƒP ¿   ?  ¿ ð   š ó  !  < ð ] 4     @,J¾¬WX  °Ž³Ï}ü’F®¨ ¶N‚­ X ì  ð ¶  , ( < - Alexander Maier: max. 50 Zeichen (MUSS-Feld)< (  f   p  " #  &   , ì x  ðx ¢ ð  “ ð6 € J¾¿   X P ƒP ¿   ?  ¿ ð   ‚ ó  ž < ð ] 4     @J¾ÜXX  gÊ(#÷öJ°òŒŠš-g X ì  ð ¶  -  < . Alexander Maier: max. 100 Zeichen (KANN-Feld)<   f   µ  - ì x  ðx ¢ ð  “ ð6 € ôJ¾¿   X P ƒP ¿   ?  ¿ ð   º ó   < ð ] 4     @ôJ¾ ZX  1g·ß iÖM™º¡ÃHƒ™ X ì  ð ¶  - ( < . Alexander Maier: max. 200 Zeichen (MUSS-Feld)< (  f   w  # #  '   - ì x  ðx ¢ ð  “ ð6 € XK¾¿   X P ƒP ¿   ?  ¿ ð   7 ó  ˜  < ð ] 4     @XK¾<[X  dËüÌOÝCŒ)kâ֝ X ì  ð ¶  , ( < - Alexander Maier: max. 16 Zeichen (MUSS-Feld)< (  f   p  " #  &   , ì x  ðx ¢ ð  “ ð6 € ¼K¾¿   X P ƒP ¿   ?  ¿ ð   ´ ó   < ð ] 4     @¼K¾l\X  ߎ ¯r­B“ŸÂ2" ¿ X ì  ð ¶  -  < . Alexander Maier: max. 100 Zeichen (KANN-Feld)<   f   µ  - ì x  ðx ¢ ð  “ ð6 € L¾¿   X P ƒP ¿   ?  ¿ ð   1 ó  ’ < ð ] 4    @ L¾œ]X  &ñ²ã‘Ð]M‹^Ω ]€Ä X ì  ð ¶  ,  < - Alexander Maier: max. 50 Zeichen (KANN-Feld)<   f   ®  , ì x  ðx ¢ ð  “ ð6 € „L¾¿   X P ƒP ¿   ?  ¿ ð   ® ó   < ð ] 4    @„L¾Ì^X  ÄÖ¶ö$ºH€Ú$‰Õy[Ü X ì  ð ¶  X  < Y Alexander Maier: 1 = Vorlesung 2 = Seminar 3 = Proseminar 4 = Übung 5 = Praktikum 6 = AG<   f   Ý X ì x  ðx ¢ ð  “ ð6 € èL¾¿   X P ƒP ¿   ?  ¿ ð   U ó  …  < ð ] 4    @èL¾ BX  ¨“•KÛ¤ôD“.ÁŽvÆjº X ì  ð ¶  2  < 3 Alexander Maier: max. 10 stellige Zahl (KANN-Feld)<   f     2 ì x  ðx ¢ ð  “ ð6 € LM¾¿   X P ƒP ¿   ?  ¿ ð   ¶ Z  ] â ð ] 4    @LM¾üBX  úIÅK{òG…—XëUQuB X ì  ð ¶  ,  < - Alexander Maier: max. 50 Zeichen (KANN-Feld)<   f   ®  ,       Alexander MaierZ      Alexander MaierZ      Alexander MaierZ     Alexander MaierZ      Alexander MaierZ      Alexander MaierZ      Alexander MaierZ      Alexander MaierZ      Alexander MaierZ    Alexander MaierZ    Alexander MaierZ    Alexander MaierZ> ¶  @           å  ï  7 þÿ   à…ŸòùOh«‘ +'³Ù0 ´   @  H  `  | ”    ¬  ä   Alexander Maier   Alexander Schwarz   Microsoft Excel @ €uà_Ç@ €ÎÈ^wÇ þÿ   ÕÍÕœ.“— +,ù®0 Ô  P  X  p x  €  ˆ   ˜ ­  ä   FH Ludwigsburg  ¡   Beispiel     Arbeitsblätter                       þÿÿÿ     ! þÿÿÿ# $ % & ' ( ) þÿÿÿýÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿR o o t E n t r y  ÿÿÿÿÿÿÿÿ  À F ÐøÄ}°Óþÿÿÿ W o r k b o o k  ÿÿÿÿÿÿÿÿÿÿÿÿ ò2  S u m m a r y I n f o r m a t i o n (   ÿÿÿÿ    D o c u m e n t S u m m a r y I n f o r m a t i o n 8 ÿÿÿÿÿÿÿÿÿÿÿÿ "  \ No newline at end of file