hi everybody,
i had a formular with two possibilities (radiobuttons)
<input type=radio CHECKED value=1 name=delay>
<input type=radio value=2 name=delay>
<input size=15 value=01.01.2002 name=datum>
<input size=10 value=24:00 name=zeit>
and onSubmit there is another formular where i can controll the input:
<? if ($delay == 1) {echo "sofort";} else if ($delay == 2) {echo "am $datum um $zeit Uhr";} ?>
until here it works fine. but now if i click on submit for the final site the input don't be shown. why? the code of the final site is the same as above:
<? if ($delay == 1) {echo "sofort";} else if ($delay == 2) {echo "am $datum um $zeit Uhr";} ?>
is it not possible to use variables in different sites? what have i to do for correct working of this example?