Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
The "name" argument is required for the form to work as described in the question.
Source Link

The most standard-based way is using form with GET method

<form method='GET' action='/00ON0000000FOHS?'> <input type='text' id='userInput' name='pc0' value='Enter Search String Here' /> <input type='text' id='userInput1' name=pn0' value='Enter Text Here' /> <input type='text' id='userInput2' name='pv0' value='Enter Text Here' /> <input type='submit' value='Change Link'/> </form> 

The name part of the input tag will be used as the argument key, and the value entered into the input field is the value in the get request.

The most standard-based way is using form with GET method

<form method='GET' action='/00ON0000000FOHS?'> <input type='text' id='userInput' value='Enter Search String Here' /> <input type='text' id='userInput1' value='Enter Text Here' /> <input type='text' id='userInput2' value='Enter Text Here' /> <input type='submit' value='Change Link'/> </form> 

The most standard-based way is using form with GET method

<form method='GET' action='/00ON0000000FOHS?'> <input type='text' id='userInput' name='pc0' value='Enter Search String Here' /> <input type='text' id='userInput1' name=pn0' value='Enter Text Here' /> <input type='text' id='userInput2' name='pv0' value='Enter Text Here' /> <input type='submit' value='Change Link'/> </form> 

The name part of the input tag will be used as the argument key, and the value entered into the input field is the value in the get request.

Source Link
STO
  • 10.7k
  • 8
  • 34
  • 32

The most standard-based way is using form with GET method

<form method='GET' action='/00ON0000000FOHS?'> <input type='text' id='userInput' value='Enter Search String Here' /> <input type='text' id='userInput1' value='Enter Text Here' /> <input type='text' id='userInput2' value='Enter Text Here' /> <input type='submit' value='Change Link'/> </form>