I have a dedicated machine set up with a mp3 file and speakers running Ubuntu with Apache2 web server.
Whenever someone connects to my webpage, I want the mp3 file to play via Banshee Media Player on my dedicated machine(not on the user's computer).
I have tried using the exec() function in my index.php file with no success:
<?php exec('banshee --play \"/var/www/song.mp3\"')
?>
Any ideas on why this isn't working or how to make this work would be greatly appreciated.🙂