<?php $jahrgang=$_COOKIE["jahrgang"]; $doz_uid1=$_COOKIE["doz_uid1"]; if ($jahrgang == ""){ require("jahrgang.php"); exit;} //Wenn man kein Jahrgang ausgewählt hat wird die Jahrgangsauswahlseite geladen include("kurs/datenbankanbindung.php"); // fügt die Datenbankanbindung ein: Sys:\php\includes\kurs\datenbankanbindung.php if (isset($_GET['action'])) $action = $_GET['action']; else $action = ""; switch($action){ default: echo" <html> <head> <meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"> <link rel=\"stylesheet\" href=\"../styles_pc.css\" type=\"text/css\"> </head> <body> <table border=\"0\" style=\"border-collapse: collapse\" width=\"100%\" cellpadding=\"0\" height=\"100%\" id=\"table1\"> <tr> <td> <div align=\"center\"> <table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" border=\"0\"> <tr> <td align=\"left\" width=\"1%\" width=\"10\" background=\"../images/box_e1.gif\"> <img height=\"40\" src=\"../images/blank.gif\" width=\"22\"></td> <td align=\"left\" width=\"98%\" background=\"../images/box_top.gif\" valign=\"top\" colspan=\"2\"> <img height=\"10\" src=\"../images/blank.gif\" width=\"1\"><br> <font class=\"hd\">Bescheinigung</font> <img height=\"5\" src=\"../images/blank.gif\" width=\"1\"></td> <td align=\"right\" width=\"1%\" background=\"../images/box_e2.gif\"> <img height=\"40\" src=\"../images/blank.gif\" width=\"22\"></td> </tr> <tr> <td width=\"1%\" background=\"../images/box_l.gif\"> <img height=\"1\" src=\"../images/blank.gif\" width=\"22\"></td> <td colspan=\"2\"> <form action="; echo $_SERVER['PHP_SELF'] . "?action=ausgabe"; echo" method=\"POST\" name=\"PSN_bearb\"> <table border=\"0\" cellpadding=\"4\" cellspacing=\"0\" ausgabe=\"border-collapse: collapse\" bordercolor=\"#E7E8ED\" width=\"100%\"> <tr> <td width=\"8%\" style=\"border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px\"> <p align=\"center\"><b>Nr.</b></p> </td> <td width=\"56%\" style=\"border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px\"> <b> <p>Bezeichnung</p> </b></td> <td width=\"24%\" style=\"border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px\"> <b> <p align=\"center\">verfügbare <br>Bescheinigungen</p> </b></td> <td width=\"12%\" align=\"center\" style=\"border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px\"> <b>Auswahl</b></td> </tr>"; $db = dbconnect(); $query = "SELECT a.id, FPRNr, Bezeichnung, bemerkung FROM skik_kurs a, skik_doz b WHERE a.id=b.id AND Jahr=\"$jahrgang\" AND b.doz_nr in (select doz_nr from doz where doz_uid = '$doz_uid1') ORDER BY FPRNr asc"; $result = $db->query($query) or die ("Cannot execute query"); while ($row = $result->fetch_array()){ if ( $res=$db->query("SELECT COUNT(*) FROM skik_wunsch where id=$row[id] and prioritaet=0") ){ if ( $row1=$res->fetch_array() ) { $result_ist=$row1[0]; } else $result_ist=0; } else $result_ist=0; echo " <tr> <td width=\"8%\" style=\"border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px\"> <p align=\"center\">$row[FPRNr]</p> </td> <td width=\"56%\" style=\"border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px\"> <p>$row[Bezeichnung]<span class=\"bemerkung\"><br> $row[bemerkung]</span></p> </td> <td width=\"24%\" style=\"border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px\"> <p align=\"center\">$result_ist</p> </td> <td width=\"12%\" align=\"center\" style=\"border-left-style: none; border-left-width: medium; border-right-style: none; border-right-width: medium; border-top-style: none; border-top-width: medium; border-bottom-style: solid; border-bottom-width: 1px\"> <p> <input type=\"radio\" value=\"$row[id]\" name=\"ausw_ausg\" size=\"20\"> </td> </tr>"; } echo " </table> <br> <input type=\"submit\" value=\"Abschicken\" name=\"B1\" size=\"20\"></p> </form> </td> <td width=\"1%\" background=\"../images/box_r.gif\"> <img height=\"1\" src=\"../images/blank.gif\" width=\"22\"></td> </tr> <tr> <td nowrap=\"nowrap\" align=\"left\" width=\"1%\" background=\"../images/box_e3.gif\"> <img height=\"16\" src=\"../images/blank.gif\" width=\"22\"></td> <td nowrap=\"nowrap\" align=\"left\" width=\"98%\" background=\"../images/box_bottom.gif\" colspan=\"2\"> <img height=\"16\" src=\"../images/blank.gif\" width=\"8\"></td> <td nowrap=\"nowrap\" align=\"right\" width=\"1%\" background=\"../images/box_e4.gif\"> <img height=\"16\" src=\"../images/blank.gif\" width=\"22\"> </td> </tr> </table> </div> </td> </tr> </table> </body> </html>"; break; case "ausgabe": $db = dbconnect(); $sel_fach = $db->query("SELECT Bezeichnung FROM skik_kurs where id=\"". $_POST['ausw_ausg']."\""); // ausw_ausg = skik_kurs.id $fach = $sel_fach->fetch_array(); $abfrage = "SELECT stud.uid, Vorname, Nachname, AG, Jahrgang FROM stud LEFT JOIN skik_wunsch USING ( uid ) WHERE skik_wunsch.uid = stud.uid AND skik_wunsch.id = \"". $_POST['ausw_ausg']."\" and prioritaet=0 AND stud.durchgefallen!='Y' "; setcookie ("ck_SID", $_POST[ausw_ausg]); echo " <html> <head> <meta http-equiv=\"Content-Language\" content=\"de\"> <link rel=\"stylesheet\" href=\"../styles_pc.css\" type=\"text/css\"> <title>Ausgabe</title> <style type='text/css'> .nextprev:link, .nextprev:visited { background-color: #D6DFF7; color: black; font-weight:bold; text-decoration: none; width: 99%; display: block; font-size: 8pt; text-align: center; padding: 1px; } .nextprev:active, .nextprev:hover { background-color: #6487DC; color: #FFFFFF; font-weight:bold; text-decoration: none; width: 99%; display: block; font-size: 8pt; text-align: center; padding: 1px; } </style> </head> <body> <span class=\"uberschrift\">Sprachkurse/Interkulturelle Kompetenzen Bescheinigung</Span><br> <b>Fach: $fach[Bezeichnung]</b></p> <p> </p> <table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" collapse bordercolor=\"#111111\" width=\"614\" id=\"AutoNumber1\" style=\"border-collapse: collapse\"> <tr> <td width=\"13%\" class=\"contentfarbe\" style=\"padding-left:4; padding-right:4; padding-top:1; padding-bottom:1; border-left-style:solid; border-left-width:1; border-right-width:1; border-top-width:1; border-bottom-width:1\" height=\"20\"> <p style=\"margin-left: 6; margin-top:4; margin-bottom:4\"><b>Vorname</b></p> </td> <td width=\"13%\" class=\"contentfarbe\" style=\"padding-left:4; padding-right:4; padding-top:1; padding-bottom:1; border-left-style:solid; border-left-width:1; border-right-width:1; border-top-width:1; border-bottom-width:1\" height=\"20\"> <p style=\"margin-left: 6; margin-top:4; margin-bottom:4\"><b>Nachname</b></p> </td> <td width=\"9%\" align=\"left\" class=\"contentfarbe\" style=\"padding-left: 4; padding-right: 4; padding-top: 1; padding-bottom: 1; border-left-style:none; border-left-width:medium; border-top-width:1; border-bottom-width:1\" height=\"20\"> <p style=\"margin-top: 4; margin-bottom: 4\"><b>AG</b></p> </td> </tr> <tr>"; $db = dbconnect(); $sql = $db->query($abfrage); // $result= Alle Studenten, die das ausgewählte Vertiefungsbereich belegt haben while ($res_ausg = $sql->fetch_array()){ $sel_daten = $db->query("SELECT Thema, Note FROM skik_ergebnis where uid=\"$res_ausg[uid]\" and id=\"". $_POST['ausw_ausg']."\""); // ausw_ausg = skik_kurs.id $daten = $sel_daten->fetch_array(); echo " <td width=\"13%\" style=\"padding-left:4; padding-right:4; padding-top:1; padding-bottom:1; border-left-style:none; border-left-width:medium\" height=\"21\"> <p style=\"margin-left: 6; margin-top: 4; margin-bottom: 4\">$res_ausg[Vorname] </td> <td width=\"13%\" style=\"padding-left:4; padding-right:4; padding-top:1; padding-bottom:1; border-left-style:none; border-left-width:medium\" height=\"21\"> <p style=\"margin-left: 6; margin-top: 4; margin-bottom: 4\">$res_ausg[Nachname] </td> <td width=\"9%\" align=\"left\" style=\"padding-left:4; padding-right:4; padding-top:1; padding-bottom:1; border-left-style:none; border-left-width:medium\" height=\"21\"> <p style=\"margin-top: 4; margin-bottom: 4\">$res_ausg[AG]/$res_ausg[Jahrgang] </td> </tr>"; } echo" </table> <br> <table valign='middle' style='border-top: 2px solid #6487DC; border-bottom: 2px solid #6487DC;' width='100%' align='center' border='0' cellpadding='0' cellspacing='0'> <tbody><tr> <td valign='middle' width='100%' height='30px' class='nextprev'> <a target='_top' href='../admin/bescheinigung/seminarscheine.php' class='nextprev'><font size='3'> </font>PDF-Drucken<font size='3'> </font></a> </td> </tr> </tbody> </table> <br> <br> </body> </html>"; } //Ende Action Abfrage ?>