query erstellen

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

  • #16
    Sorry das habe ich auch erst heute gemerkt
    PHP-Code:
    foreach ($_SESSION as $key => $value
     
    $value trim($value);
     if(empty(
    $value)){
            continue;
        } 
    Man kann empty() nicht auf den Rückgabewert anderer Funktionen loslassen.

    Gruss

    tobi
    Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten

    [color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
    Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)

    Kommentar


    • #17
      hi

      hatte es so gemacht - schau mal

      PHP-Code:
           foreach ($_SESSION as $key => $value
           if(empty(
      $value)){
                  continue;
              }
              else
              {
               
      $where.="$key='$value' and ";
              }
          
          
      $where=substr($where0strlen($where)-4);
          if (
      $where == '')
          {
          
      $ergebnis=mysql_query("select * FROM test");
          }
          else
          {
              
      $ergebnis=mysql_query("select * FROM test WHERE
       
      $where");

          } 

      Kommentar

      Lädt...
      X