mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
80 lines
3.0 KiB
PHP
80 lines
3.0 KiB
PHP
<?php
|
|
/* Copyright (C) 2006 Technikum-Wien
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
* Authors: Christian Paminger <christian.paminger@technikum-wien.at>,
|
|
* Andreas Oesterreicher <andreas.oesterreicher@technikum-wien.at> and
|
|
* Rudolf Hangl <rudolf.hangl@technikum-wien.at>.
|
|
*/
|
|
|
|
require_once('../config.inc.php');
|
|
|
|
session_start();
|
|
|
|
//Connection Herstellen
|
|
if(!$db_conn = pg_pconnect(CONN_STRING))
|
|
die('Fehler beim oeffnen der Datenbankverbindung');
|
|
?>
|
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
<link href="../../skin/cis.css" rel="stylesheet" type="text/css">
|
|
</head>
|
|
|
|
<body>
|
|
<?php
|
|
if (isset($_SESSION['pruefling_id']))
|
|
{
|
|
echo '<table width="100%" border="0" cellspacing="0" cellpadding="0" style="border-right-width:1px;border-right-color:#BCBCBC;">';
|
|
echo '<tr><td nowrap>
|
|
<a class="MenuItem" href="index.html" target="_top">
|
|
<img src="../../skin/images/menu_item.gif" width="7" height="9"> Home
|
|
</a>
|
|
</td></tr>';
|
|
echo '<tr><td nowrap><img src="../../skin/images/menu_item.gif" width="7" height="9"> Gebiet</td></tr>';
|
|
echo '<tr><td nowrap>';
|
|
echo '<table width="100%" border="0" cellspacing="0" cellpadding="0" id="Gebiet" style="display: visible;">';
|
|
|
|
$qry = 'SELECT * FROM testtool.vw_ablauf WHERE studiengang_kz='.$_SESSION['studiengang_kz'].' ORDER BY reihung';
|
|
//echo $qry;
|
|
if($result = pg_query($db_conn, $qry))
|
|
while($row = pg_fetch_object($result))
|
|
echo '<tr>
|
|
<td width="10" nowrap> </td>
|
|
<td nowrap>
|
|
<a class="Item" href="frage.php?gebiet_id='.$row->gebiet_id.'" target="content"><img src="../../skin/images/menu_item.gif" width="7" height="9"> '.$row->gebiet_bez.'</a>
|
|
</td>
|
|
</tr>';
|
|
echo '</table>';
|
|
echo '</td></tr></table>';
|
|
}
|
|
else
|
|
{
|
|
echo '<table width="100%" border="0" cellspacing="0" cellpadding="0" style="border-right-width:1px;border-right-color:#BCBCBC;">';
|
|
echo '<tr><td nowrap>
|
|
<a class="HyperItem" href="index.html" target="_top">
|
|
<img src="../../skin/images/menu_item.gif" width="7" height="9"> Login
|
|
</a>
|
|
</td></tr>';
|
|
echo '</table>';
|
|
echo '</td></tr></table>';
|
|
}
|
|
?>
|
|
</body>
|
|
</html>
|