I wanna run python code in PHP and the PHP code is bellow:
<?php
$command = escapeshellcmd('python3 /usr/C:/xampp/htdocs/scripts/a.py');
$output = shell_exec($command);
print $output;
But, when I run this PHP code, nothing happens in the screen!
How can I fix it?