I would like to redirect to the chosen page after having validated the form. I started this:
<form action = "planning.php?court= variable" method = "POST">.
<script>
function courtNumber () {
var variable = document.getElementById ("tennis_court"). value;
alert (variable);
}
</script>
I catch the correct value in my alert when I click on validate, now I would like to insert it in my tag.
Thank you.