Jump to content

Press web page button -> start Autoit function on server


rony2006
 Share

Recommended Posts

Hello Mr. I think your question is more related to a web client/server developement.

anyway You need to do something like this.

<?php
    if (isset($_POST['button']))
    {
         exec('your script path here');
    }
?>
<html>
<body>
    <form method="post">
    <p>
        <button name="button">Run Perl</button>
    </p>
    </form>
</body>

 

Take a look to the exec 's documentation. 

 

Saludos

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...