php in sql select

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

  • php in sql select

    hi,

    hab mal eine banale frage:

    Wie binde ich eine IF-Abfrage in ein Select ein?

    PHP-Code:
    $strnotdetail1="select id, notdienstname, plz, notortsteil, telefon, notstrasse from detail where notortsteil=".if($ortsteil!="1"){echo $orts;}." order by notdienstname"
    fehlermeldung: Parse error: parse error, unexpected T_IF

  • #2
    also entweder teilst Du den String was übersichtlicher ist
    $strnotdetail1="select id, notdienstname, plz, notortsteil, telefon, notstrasse from detail";
    if($ortsteil!="1") $sql .= " where notortsteil='".$orts."'";
    $sql .= " order by notdienstname";

    oder mit (($ortsteil!="1") ? " where notortsteil='".$orts."'":'')
    Beantworte nie Threads mit mehr als 15 followups...
    Real programmers confuse Halloween and Christmas because OCT 31 = DEC 25

    Kommentar


    • #3
      na da kann ich ja lange probieren ;-) thx

      Kommentar

      Lädt...
      X