Hi,
I have a button. I want to run a shell script when i click that button.
My HTML code is given below:
Can anybody help me out for this problem?
I have a button. I want to run a shell script when i click that button.
My HTML code is given below:
Code:
<html> <head> </head> <body> <input type = "button" value = "run script" onclick = "some javascript func to run script()"> </body> </html>
Comment