如何在 HTML 按钮单击时执行 运行 exec() 命令?

How to run exec() command on HTML button click?

所以当我加载 HTML 页面时,默认情况下它会自动运行 exec() 命令。 我如何让它像仅在我按下提交按钮而不是我的默认按钮时运行?

<form action="site.php" method="POST">

  <input type="text" id="fname" name="fname"><br><br> 
  <input type="text" id="lname" name="lname"><br><br> 

  <input type="submit" value="Show values">

</form>

</body>
</html>

<?php

exec('java -jar "C:\temp\test.jar" -db dbs.zed.bvba.com -h 10.222.222.22 -new 1', $response);
print nl2br(print_r($response, true));

?>

你要检查一下,表单是否提交。

<?php 
if(isset($_POST['submit']))
{
   exec('java -jar "C:\temp\test.jar" -db dbs.zed.bvba.com -h 10.222.222.22 -new 1', $response);
   print nl2br(print_r($response, true));
}

?>