Quellcode |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
<?php // Prüfen, ob Modul Suche installiert ist $module = mysql_fetch_assoc(mysql_query("SELECT * FROM module WHERE ordner='suche'")); if ($module['code'] != "") { // Wenn nicht leer dann // Prüfen, ob eine Seite mit dem Modul Suche vorhanden ist $page = mysql_fetch_assoc(mysql_query("SELECT * FROM pages WHERE type='modul' inhalt='".$module['code']."' LIMIT 1")); // Limit 1, damit nur eine ausgelesen wird, falls mehr vorhanden sind if ($page['id'] != "") { // Wenn nicht leer dann // Suche Formular welches auf die Sucheseite leitet // header("Location: ".$settings['page_dir']."/index.php?seite=".$page['id'].".".$page['name'].""); echo "<div id="suche">\n"; open_table(); if ($optionen['page_modrewrite'] == "1") { echo "<form name="suche" method="post" action="".$page_dir."/".$page['id'].".".$page['name']."/senden/">\n"; } else { echo "<form name="suche" method="post" action="".$page_dir."/index.php?seite=".$page['name']."&action=senden">\n"; } echo "<input type="text" class="formular" name="suche" title="Suche..." value="Suche..." onblur="if (this.value=='') this.value='Suche...';" onfocus="if (this.value=='Suche...') this.value='';" />\n"; echo "<p align="right"><input type="submit" value="» Suchen" class="button" /></p>\n"; echo "</form>\n"; close_table(); echo "</div>\n"; } } ?> |
Quellcode |
|
1 |
Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in /var/www/web3/html/dev/~w3bcms/_1/includes/addons/qsearch/index.inc.php on line 11 |
Quellcode |
|
1 |
$page = mysql_fetch_assoc(mysql_query("SELECT * FROM pages WHERE type='modul' inhalt='".$module['code']."' LIMIT 1")); // Limit 1, damit nur eine ausgelesen wird, falls mehr vorhanden sind |
Zitat
$page = mysql_fetch_assoc(mysql_query("SELECT * FROM pages WHERE type='modul' AND inhalt='".$module['code']."' LIMIT 1"));
Quellcode |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
<?php global $settings; global $optionen; global $seitenabfrage; // Prüfen, ob Modul Suche installiert ist $module = mysql_fetch_assoc(mysql_query("SELECT * FROM module WHERE ordner='suche'")); if ($module['code'] != "") { // Wenn nicht leer dann // Prüfen, ob eine Seite mit dem Modul Suche vorhanden ist $page = mysql_fetch_assoc(mysql_query("SELECT * FROM pages WHERE type='modul' AND inhalt='".$module['code']."' LIMIT 1")); // Limit 1, damit nur eine ausgelesen wird, falls mehr vorhanden sind if ($page['id'] != "") { // Wenn nicht leer dann // Suche Formular welches auf die Sucheseite leitet // header("Location: ".$settings['page_dir']."/index.php?seite=".$page['id'].".".$page['name'].""); echo "<div id="suche">\n"; open_table(); if ($optionen['page_modrewrite'] == "1") { echo "<form name="suche" method="post" action="".$page_dir."/".$page['id'].".".$page['name']."/senden/">\n"; } else { echo "<form name="suche" method="post" action="".$page_dir."/index.php?seite=".$page['name']."&action=senden">\n"; } echo "<input type="text" class="formular" name="suche" title="Suche..." value="Suche..." onblur="if (this.value=='') this.value='Suche...';" onfocus="if (this.value=='Suche...') this.value='';" />\n"; echo "<p align="right"><input type="submit" value="» Suchen" class="button" /></p>\n"; echo "</form>\n"; close_table(); echo "</div>\n"; } } ?> |
Quellcode |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
<?php global $settings; global $optionen; global $seitenabfrage; // Prüfen, ob Modul Suche installiert ist $module = mysql_fetch_assoc(mysql_query("SELECT * FROM module WHERE ordner='suche'")); if ($module['code'] != "") { // Wenn nicht leer dann // Prüfen, ob eine Seite mit dem Modul Suche vorhanden ist $page = mysql_fetch_assoc(mysql_query("SELECT * FROM pages WHERE type='modul' AND inhalt='".$module['code']."' LIMIT 1")); // Limit 1, damit nur eine ausgelesen wird, falls mehr vorhanden sind if ($page['id'] != "") { // Wenn nicht leer dann // Suche Formular welches auf die Sucheseite leitet // header("Location: ".$settings['page_dir']."/index.php?seite=".$page['id'].".".$page['name'].""); echo "<div id="suche">\n"; open_table(); if ($optionen['page_modrewrite'] == "1") { echo "<form name="suche" method="post" action="".$page_dir."/".$page['id'].".".$page['name']."/senden/">\n"; } else { echo "<form name="suche" method="post" action="".$page_dir."/index.php?seite=".$page['id'].".".$page['name']."&action=senden">\n"; } echo "<input type="text" class="formular" name="suche" title="Suche..." value="Suche..." onblur="if (this.value=='') this.value='Suche...';" onfocus="if (this.value=='Suche...') this.value='';" />\n"; echo "<p align="right"><input type="submit" value="» Suchen" class="button" /></p>\n"; echo "</form>\n"; close_table(); echo "</div>\n"; } } ?> |
Quellcode |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
<?php // DATENBANK(EN) ABRUFEN global $settings; global $optionen; global $seitenabfrage; $page_dir = $settings['page_dir']; $newsmodul = @mysql_fetch_assoc(mysql_query("SELECT * FROM module WHERE ordner='news'")); $blogmodul = @mysql_fetch_assoc(mysql_query("SELECT * FROM module WHERE ordner='blog'")); $newsid = @mysql_fetch_assoc(mysql_query("SELECT * FROM pages WHERE type='modul' AND inhalt='%NEWS%'")); $blogid = @mysql_fetch_assoc(mysql_query("SELECT * FROM pages WHERE type='modul' AND inhalt='%BLOG%'")); // SUCHE open_table(); if ($optionen['page_modrewrite'] == "1") { echo "<form name="suche" method="post" action="".$page_dir."/X.suche/senden/">\n"; } else { echo "<form name="suche" method="post" action="".$page_dir."/index.php?seite=X.suche&action=senden">\n"; } echo "<input type="text" class="formular" name="suchbegriff" title="Bitte Suchbegriff(e) eingeben" value="Suchbegriff(e) ..." onblur="if (this.value=='') this.value='Suchbegriff(e) ...';" onfocus="if (this.value=='Suchbegriff(e) ...') this.value='';" />\n"; echo "<p align="right"><input type="submit" value="» Suchen" class="button" /></p>\n"; echo "</form>\n"; close_table(); ?> |
Zitat von »"fzm"«
Ich verstehe ja noch immer nicht was genau gewollt wird.
Quellcode |
|
1 2 3 4 |
$newsmodul = @mysql_fetch_assoc(mysql_query("SELECT * FROM module WHERE ordner='news'")); $blogmodul = @mysql_fetch_assoc(mysql_query("SELECT * FROM module WHERE ordner='blog'")); $newsid = @mysql_fetch_assoc(mysql_query("SELECT * FROM pages WHERE type='modul' AND inhalt='%NEWS%'")); $blogid = @mysql_fetch_assoc(mysql_query("SELECT * FROM pages WHERE type='modul' AND inhalt='%BLOG%'")); |