-1

I want to play an beep sound on internal(on-board) speaker to alert the user about a specific activity on a webpage.

Is it possible in PHP?

Poo
  • 39
  • 6

1 Answers1

1

No this is not possible, not on the client's machine anyway. PHP is a back-end language that uses HTML / CSS as a front-end output, thus you can't do anything to the user's machine that the front-end languages can't do (HTML, CSS, Javascript)

Chris Evans
  • 1,235
  • 10
  • 14