Inhalte von JS-Variablen an PHP übergeben

Hallo.

script
var js_variable = 7;
var noch_eine = 5;

1.) window.location.href = „http://www.josef-aichinger.at/_udemy/jquery/versuch_2.php?noch_eine= 5&js_variable=“ + js_variable;

2.) window.location.href = „http://www.josef-aichinger.at/_udemy/jquery/versuch_2.php?noch_eine=“ + noch_eine?„js_variable=“ + js_variable ;

Zeile 1 funktioniert
Zeile 2 funzt nicht

was mache ich falsch ?
wer kann mir bitte helfen?

Weil ein „&“ fehlt.
Es sollte wohl eher
window.location.href="https://[...]/versuch_2.php?noch_eine="+noch_eine+"&js_variable="+js_variable;

lauten.

1 Like

OK Danke herzlich
Schöne Adventzeit
Josef

usw… Super