Hi, ich habe da ein Problem mit der Volltextsuche. ich habe eine Bezahlversion und möchte mit volltextsuch die Daten suchen lassen, aber ich weiß absolut nicht wie es geht.
Meine Datenbank: http://database.nextfloor.de/baseportal/SMKunst
Mein HTML-Code: <html>
<head>
<title>Deine Seite</title>
<style type="text/css">
<!--
<style type="text/css">
<!--
a:link {
color:blue;
font-family:arial,Verdana,arial,helvetica,serifenlos;
font-size:10pt;
font-style:Normal;
font-weight:normal;
text-decoration:none;
a:visited {
color:blue;
font-family:arial,Verdana,arial,helvetica,serifenlos;
font-size:10pt;
font-style:Normal;
font-weight:normal;
text-decoration:none;
a:active {
color:blue;
font-family:arial,Verdana,arial,helvetica,serifenlos;
font-size:10pt;
font-style:Normal;
font-weight:normal;
text-decoration:none;
a:hover {
color:Red;
font-family:arial,Verdana,arial,helvetica,serifenlos;
font-size:10pt;
font-style:Normal;
font-weight:normal;
text-decoration:none;
TD {
color:black;
font-size:10pt;
font-family:arial;
font-style:normal;
font-weight:400;
valign:top;
#nav {
color:black;
font-size:8pt;
font-family:arial,verdana,helvetica,sans-serif;
font-style:normal;
font-weight:400;
valign:top;
background-color:white;
border-style:;
border-width:1pt;
text-decoration:none;
//-->
<ul><font size=4></font></ul>
<left>
<do action=all tdparam=id=nav databack=f0f0f0 datasize=2 headback=e0e0e0 border=0 spacing=1 padding=2 gridcolor=b0b0b0 dataface=arial,helvetica sort^=-Name range^=0,50 pagebrowse=no buttonbrowse=bottom listtype=list listfields=Name,Beschreibung,URL input=link>
<p><font face=arial,helvetica size=2>
</body></html>
<loop db=SMKunst sort=->
<Table>
<TR><TD><B>$Name</B></TD></TR>
<TR><TD>$Beschreibung</TD></TR>
<TR><TD><a href="$URL">$URL</a></TR></TD>
</Table><BR>
</loop>
Und diesen HTML-Code habe ich aus der Dokumentation.
<form action="http://database.nextfloor.de/baseportal/SMKunst" method="post" enctype="multipart/form-data">
<input type="hidden" name="htx=" value="$htx">
Freie Suche: <input type="text" name="_fullsearch~~" value="$_fullsearch">
<input type="submit" value="Suchen">
</form>
<perl>
return if $_fullsearch eq "";
get "fullsearch_match=10";
while(get_next)
{
$out= <<EOF;
<b>$Titel</b><br>$Beschreibung - $Kommentar<p>
EOF
$out=~ s#$_fullsearch_regex#<b><font color=red>$1</font></b>#g;
out $out;
}
my $newrange=$_fullsearch_range+$_fullsearch_range_length;
if($_fullsearch_match_pos<$newrange)
{
$txt="Suche nach weiteren Treffern";
$newrange=$_fullsearch_match_pos;
} else
{
out "<b>Kein Treffer.</b><p>" if $_fullsearch_amount<1;
$txt="Suche in weiteren Datensätzen";
}
if($newrange<$_amount_all)
{
out "Es wurde noch nicht in allen Datensätzen gesucht: ";
out "<a href=\"database.nextfloor.de/baseportal/SMKunst&_fullsearch~~".convert_url($_fullsearch). "&fullsearch_range=$newrange,$_fullsearch_range_length\">$txt</a>";
} else
{
out "Die Datenbank wurde komplett durchsucht.";
}
</perl>
<br>
Und die Tabelle auf meiner Webseite sollte auch nicht erscheinen, sondern nur diese drei Zeilen.
Z.B.
D3
Text
http://www.ghfhjgfghfrghf.de
Wenn mir jemand weiterhelfen könnte wäre ich echt dankbar.
Gruß Mike