MYSQL_CONNECT($server, $user, $passwort) or die ("Datenbankserver nicht erreichbar");
MYSQL_SELECT_DB($datenbank) or die ("Datenbank nicht vorhanden");
$result=mysql_query("select * from $Array[tabelle] where func like $array[search]");
$id='.row[id].';
while ($row=mysql_fetch_array($result)) {
echo "<table border=\"1\" width=100%>";
echo "<tr>";
echo "<th colspan=2><b>".$row[name]."</b></th>";
echo "</tr>";
echo "<tr>";
echo "<td>Klicks / Downloads: ".$row[dls]."</td>";
echo "<td><a href=\"link.php?tabelle=$tabelle&id=$row[id]\" target=\"_blank\">Link zum Tutorial</a></td>";
echo "</tr>";
echo "<tr>";
echo "<td links colspan=2> Beschreibung:<br>".$row[func]."</th>";
echo "</tr>";
echo "</table>";
echo "<br>";
}