TommyWillB
Registered
I wrote a bash shell script that does two things:
The echo line just invokes the terminal alert bell. The Open comman opes a sound file in the default player. (QuickTime or iTunes probably)
These both do exactly what you'd expect when run command line, but neither work when called via one of the system execution commands.
What I'm really trying to do is make my computer beep whenever someone hists one particular page on my Web site.
Anyone know how to make PHP play a sound on the server? (...not on the client browser.)
Code:
echo -e "\a";
Open ./Tink.aiff;
These both do exactly what you'd expect when run command line, but neither work when called via one of the system execution commands.
What I'm really trying to do is make my computer beep whenever someone hists one particular page on my Web site.
Anyone know how to make PHP play a sound on the server? (...not on the client browser.)