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

问题描述 投票:0回答:1

有帮助的ty帮助ty帮忙

php html exec submit
1个回答
-1
投票

您必须检查,是否已提交表格。

<?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));
}

?> 
© www.soinside.com 2019 - 2024. All rights reserved.