I would like to have a URL such as
and a user input text area.
If the user inputted 123 the link would be
and there would be a button they could click to go to this link.
Could someone please tell me if this is possible without javascript or if not? Could you please let me know how best to implement it? Thank you for your time.
You can do this by posting your form to a PHP page and PHP will redirect the user to that URL using
header.And then at the top of your page put:
Please take great care in how you implement this because it can easily lead to XSS injections.