Mailinglisten-Archive |
Hi zusammen, ich hab wieder ein kleines Problem *g* Ich habe zwei Variablen A und B. Ich möchte jetzt folgende Bedingung in eine If-Anweisung formulieren: Wenn A='hallo' soll überprüft werden ob B='hallo' ist oder B='hallo du' ist if ((A=='hallo') && (B=='hallo') || (B='hallo du')) überprüft er in dem fall jetzt, ob entweder 1: A= hallo und B=hallo 2: B= hallo du oder überprüft er: 1: A=hallo und B=hallo 2: A=hallo und B=hallo du oder muss ich es für die zweite version dann schreiben: if ((A=='hallo') && (B=='hallo') || (A='hallo') && (B='hallo du')) ? Vielleicht hat ja jemand schonmal so eine If anweisung formulieren müssen Danke Mike
php::bar PHP Wiki - Listenarchive