我为我的覆盆子pi安装了一个apache web服务器。 我想从php文件运行bash脚本。 我的php文件," index.php"与nsg提出的相同: Run a shell script with an html button
因此,当我在http://192.168.1.211上启动我的网页时,我有了#34;点击我"按钮但是当我点击它时没有任何反应。
答案 0 :(得分:1)
只需处理请求并像这样调用shell脚本:
exec("/path/to/name.sh");
这不是很好的做法。