I would like to execute a command on the server by using the system request parameters in the URL. I am running the server.
In the browser ->> //localhost:9009/?comd
which is displaying the list of files in the directory as i placed in the code
if (/comd/i ) { print $client `dir`; }
How I can parse the request parameters? For example:
http://localhost:9009/?comd&user=kkc&[email protected]
I would like to return -->> hello user please confirm your email [email protected]
How can I parse the request parameters in the url?