Problem bei Keywordsuche

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Problem bei Keywordsuche

    Hallo, ich habe folgendes Problem:
    ich möchte eine ganze tabelle durchsuchen, was auch bis auf den beitrag funktioniert. Kann es daran liegen, dass beitrag als text definiert ist?

    PHP-Code:
    <?$intSecurity = 2;
    $intTimeOut = 1800;
    $strPageTitle = "Results";
    include "includes/security.inc.php";
    include "includes/db.inc.php";
    include "includes/functions.inc.php";
    include "includes/header.inc.php";?>
    <html>
    <body>

    <?php
    echo "by using this Keyord:   <big>$ug</big><p>";
       
    $sqlab " select name, email, titel, system, hardware, software, abteilung, beitrag from gb ";
       
    $sqlab .= " where name = '$ug' OR email = '$ug' OR titel ='$ug' OR system = '$ug' OR hardware = '$ug' OR software = '$ug' OR abteilung = '$ug' OR beitrag = '$ug' order by datum ";
       
       
    $res dbquery($sqlab);
       
    $num mysql_num_rows($res);

       if (
    $num==0)
         { echo 
    "Sorry, but there are no matches found.<br>";
          echo 
    "Are you sure, that you type in the correct word!";}

       for (
    $i=0$i<$num$i++)
       {
          
    $na mysql_result($res$i"name");
          
    $em mysql_result($res$i"email");
          
    $ti mysql_result($res$i"titel");
          
    $sy mysql_result($res$i"system");
          
    $ha mysql_result($res$i"hardware");
          
    $so mysql_result($res$i"software");
          
    $ab mysql_result($res$i"abteilung");
          
    $be mysql_result($res$i"beitrag");
          echo 
    "$da$na$em$ti$be$ha$sy$ab<br>";
       }

       
    mysql_close($db);
    ?>
    </body>
    </html>

  • #2
    Suche geht

    hier die richtige Lösung:

    PHP-Code:
     $sqlab " select name, email, titel, system, hardware, software, abteilung, beitrag from gb ";
       
    $sqlab .= " where name = '$ug' OR email = '$ug' OR titel ='$ug' OR system = '$ug' OR hardware = '$ug' OR software = '$ug' OR abteilung = '$ug' OR beitrag like '%$ug%' order by datum "

    Kommentar

    Lädt...
    X