Hidden field populated but not trnsferred to confirm.php neither email(latters the sa

hidden field populated but not trnsferred to confirm.php neither email(latters the same)

georgiosrafaelavilla.com/book.php
after get final price the
<input type=“hidden” id=“priceHidden” />
get populated
after submit form
$price=$_POST[‘priceHidden’];
of bookingprocessor.php run
but in confirmation.php
got “” for $price in other words nothing…

you can submit with name “test”…
well?

Try giving the input a name value:

<input type="hidden" id="priceHidden" name="priceHidden" />

Edit: There’s also no value set for this tag, so it’s not going to return anything
Edit 2: Ignore that, I’ve just noticed that the value is populated by your JS!

worked thks