从html按钮提交运行python脚本

时间:2018-12-04 09:29:38

标签: python

我有一个将数据输入到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?

预先感谢

1 个答案:

答案 0 :(得分:1)

proses.php中,您可以使用shell_exec

调用命令
shell_exec ("python /home/pi/folder/folder1/test.py")

警告!出于安全原因,大多数免费的托管服务都禁止使用shell_exec PHP函数。