2x Post in einer Variable

Alice

Erfahrenes Mitglied
Hallo. :)

Ich habe eine kurze Frage.

PHP:
$Formularfeld1  = strtoupper($_POST['Formularfeld1']);

Ich habe zwei Formularfelder. Einmal Formularfeld1 und Formularfeld2. Gibt es eine Möglichkeit das ich zwei Formularfelder einer Variable zuweise?
 
Wie meinst du das?

Möchtest du deiner lokalen Variable 2 Werte zuweisen, oder dem Post-Array?

Wenn es die lokale ist, dann einfach ein Array daraus machen.
Wenn du Post meinst, dann nein. Sonst könnte man ja nicht mehr eindeutig zuweisen.
 
Ich versteh die Frage zwar nicht ganz aber das geht:

PHP:
$Formularfeld1  = strtoupper($_POST['Formularfeld1']);  
$Formularfeld1  = strtoupper($_POST['Formularfeld2']);

(wobei die Variable dann überschrieben wird)

oder meinst Du so:

PHP:
$Formularfeld  = strtoupper($_POST['Formularfeld1']);  
if ($formularfeld=="") $Formularfeld  = strtoupper($_POST['Formularfeld2']);

oder etwa so:
PHP:
$Formularfeld  = strtoupper($_POST['Formularfeld1']).strtoupper($_POST['Formularfeld2']);

Aber bevor wir weiterraten... Stell mal die Frage nochmal etwas präziser... ;)
 
Also entweder du kombinierst die Werte:

PHP:
$a = "Hallo ";
$b = "Herr Müller";
$c = $ a .$b;
 
echo $c  // ergibt dann "Hallo Herr Müller"

oder als Array:

PHP:
$a[] = $wert_von_variable1;
$a[] = $wert_von_variable2;
 
Also erst einmal vielen Dank für eure ganzen Antworten :)

Ich brauche den String vom Formularfeld1 und Formularfeld2 als einen String.

Beispiel:
Formularfeld1 = PHP-
Formularfeld2 = Code

VAR = PHP-Code

Ich glaube das hier ist das was ich brauche:
PHP:
$Formularfeld  = strtoupper($_POST['Formularfeld1']).strtoupper($_POST['Formularfeld2']);
 
Zurück