Subversion Repositories personal-webbase

Rev

Rev 14 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 14 Rev 15
Line 23... Line 23...
23
</form>';
23
</form>';
24
 
24
 
25
  if ($suchbegriff != '')
25
  if ($suchbegriff != '')
26
  {
26
  {
27
    echo '<b>Suchergebnisse f&uuml;r &quot;'.$suchbegriff.'&quot;:</b><br><br>';
27
    echo '<b>Suchergebnisse f&uuml;r &quot;'.$suchbegriff.'&quot;:</b><br><br>';
28
    gfx_begintable();
28
    wb_draw_table_begin();
29
    $etwas_gefunden = false;
29
    $etwas_gefunden = false;
30
    gfx_tablecontent('30', '', '', '<b>Modul</b>', '', '<b>ID</b>', '', '<b>Titel</b>', '', '', '', '');
30
    wb_draw_table_content('30', '', '', '<b>Modul</b>', '', '<b>ID</b>', '', '<b>Titel</b>', '', '', '', '');
31
    $res = db_query("SELECT `modul`, `table` FROM `".$mysql_zugangsdaten['praefix']."module` WHERE `is_searchable` = '1'");
31
    $res = db_query("SELECT `modul`, `table` FROM `".$mysql_zugangsdaten['praefix']."module` WHERE `is_searchable` = '1'");
32
    while ($row = db_fetch($res))
32
    while ($row = db_fetch($res))
33
    {
33
    {
34
      $modulueberschrift = $row['modul'];
34
      $modulueberschrift = $row['modul'];
35
      $modulsekpos = '';
35
      $modulsekpos = '';
Line 131... Line 131...
131
              $c = '<a href="'.oop_link_to_modul($row['modul']).'" class="menu">'.$modulueberschrift_a.'</a>';
131
              $c = '<a href="'.oop_link_to_modul($row['modul']).'" class="menu">'.$modulueberschrift_a.'</a>';
132
            else
132
            else
133
              $c = $modulueberschrift_a;
133
              $c = $modulueberschrift_a;
134
          }
134
          }
135
 
135
 
136
          gfx_tablecontent('', '<img src="'.$k.'" alt="" width="16" height="16">', '', $c, '', $row2['id'], '', $titel, '100', $a, '100', $b);
136
          wb_draw_table_content('', '<img src="'.$k.'" alt="" width="16" height="16">', '', $c, '', $row2['id'], '', $titel, '100', $a, '100', $b);
137
        }
137
        }
138
      }
138
      }
139
    }
139
    }
140
    if (!$etwas_gefunden)
140
    if (!$etwas_gefunden)
141
      gfx_tablecontent('', 'Kein Datensatz gefunden!', '', '', '', '', '', '', '', '', '', '');
141
      wb_draw_table_content('', 'Kein Datensatz gefunden!', '', '', '', '', '', '', '', '', '', '');
142
    gfx_endtable();
142
    wb_draw_table_end();
143
  }
143
  }
144
 
144
 
145
  echo $footer;
145
  echo $footer;
146
 
146
 
147
?>
147
?>