1 Respuesta
0
You can call python script from php using this pair of command:
$cmd = escapeshellcmd('yourscript');
and
$result = shell_exec($command)
I suggest to read carefully official php documentation about them before inserting them into your code headlong.