i want to run a unix/linux program with a php script.
i have two textbox named text1 and text2
and one button named execute.
if the button clicked then execute a unix command
like this :
execute( "cp text1 text2")
"cp" is unix command for copy
"text1" is directory source file to copy
"text2" is destination directory
how's the code looks like, write me an example.
i have two textbox named text1 and text2
and one button named execute.
if the button clicked then execute a unix command
like this :
execute( "cp text1 text2")
"cp" is unix command for copy
"text1" is directory source file to copy
"text2" is destination directory
how's the code looks like, write me an example.
Comment