I have some code written in PHP, but I have also developed a script written in Python. Is it possible to call this Python script from the PHP code?
If yes, how can I
You can try this:
python scripts:
test.py: print "hello"
then php Scripts
index.php: $i =`python test.py`; echo $i;