Possible Duplicate:
How do I make Javascript beep?
I'm using PHP for my new project. My client needs a beep sound when someone enters data in a mysql table.
Is it possible to create a sound/beep in PHP or Javascript?
Possible Duplicate:
How do I make Javascript beep?
I'm using PHP for my new project. My client needs a beep sound when someone enters data in a mysql table.
Is it possible to create a sound/beep in PHP or Javascript?
Something like this...
<a href="#" onMouseOver="PlaySound('success.wav')">Move mouse here</A>
Move mouse here.
<img src="play.gif" onClick="PlaySound('success.wav')">
<form>
<input type="button" value="Play Sound" onClick="PlaySound('success.wav')">
</form>
Or
<bgsound id="sound">
<script>
function PlaySound(url) {
document.all.sound.src = url;
}
</script>
See My Answer here: How to play sound when new record added to database
Sound Manager 2