我有一个将数据输入到txt文件的代码:
func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return 80.0
}
并且我在此路径上有一个python脚本:
<form action="proses.php" method="post">
Nomor Polisi : <br><input type="text" name="nopol"><br>
<input type="submit" id ="submitButton" value="Submit">
</form>
我尝试在命令行下正常运行的python脚本。问题是,如何从html表单代码运行python脚本test.py?
预先感谢
答案 0 :(得分:1)
在proses.php
中,您可以使用shell_exec
shell_exec ("python /home/pi/folder/folder1/test.py")
警告!出于安全原因,大多数免费的托管服务都禁止使用shell_exec
PHP函数。