How to pass a parameter without using a form. Using the link will not work?

    1 answer 1

    If you are trying to do "this is something" not from a desktop application, then CURL will help you a lot (for both GET and POST requests). With $ _GET requests it is still easier. To do this, simply pass the parameters through the address bar:

    http://www.example.com/?param1=1&param2=2 

    After the question mark are the query parameters. This, in fact, is not difficult to implement in the desktop application. This URL can be used as a link, so the answer to your question: You can!

    • Tochnyak, thank you) - Jan Bronnikau