print getTitle(); ?>
@mysql_connect($dbhost, $dbuser, $dbpwd) or die ("Konnte keine Verbindung zur Datenbank herstellen!");
@mysql_select_db($dbname) or die ("Konnte die Verbindung zu $dbname nicht herstellen!");
$result = mysql_query("SELECT * FROM egee_acronyms ORDER BY acronym ASC");
printTableHeader(array("Akronym", "Beschreibung", "Bereich"));
while($row = mysql_fetch_array($result)) {
$description=$row['description'];
if ($row['translation']!="") $description=$description."
".$row['translation'].""; printTableLine(array("".$row['acronym']."",$description,$row['area'])); } printTableFooter(); mysql_free_result($result); mysql_close(); ?>
".$row['translation'].""; printTableLine(array("".$row['acronym']."",$description,$row['area'])); } printTableFooter(); mysql_free_result($result); mysql_close(); ?>
