When a user enters a web page, a box will open and ask them to enter a membership number.
When the person enters the information into the box, the entered information will be appended to the end of a URL I predetermined, and this URL will open.
For the incoming value of the Textbox, if it is ASP.NET,
Response.Redirect(" http://url + ’ " + textbox.Text + " ’ ")
If it is PHP,
header("Location: http://url + $_GET [‘inputname’] ");
I’m on mobile but it needs to be done roughly like this.
Instead of appending the written data to the end, if I want to write it somewhere in the middle of the URL I will provide, what kind of modification should I make?