Hi im trying to make a small script that executes an external program , mpg321,
I have tried to use shell_exec, exec and passthru like this :---
<?php shell_exec('mpg321 mymp3.mp3'); ?>
mpg321 is started fine, only the page continues to load in my browser window until playback has finished..
is there any way to execute the command and move on with out waiting for it to complete ?
Thanks in advance