1

I have some programs installed at the server side of my LAN . I want the client to be able to execute the server function for instance "svn --help" using command line .. My server url for eg xx.xxx.x.xxx I know that passthru() is the function i have to use . How can I make my client to communicate with the server using command line to execute this command ?

0

1 Answer 1

3
<?php
$result = `svn --help`;
echo $result;
?>
Sign up to request clarification or add additional context in comments.

1 Comment

@vimalBasdeo note backticks ` are not the same as '

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.