For my web site in PHP, we are generating mobile web site and have to implement a voice recording facility via from any mobile device; do you know any better option to easily integrate the same with my PHP mobile web site?
I have tried some Java Applets, but those are not working into iPhone / Android, so any simple tool, which can record voice with any mobile device and option save / play the recorded voice on my web site and mobile both sides.
Earliest help would be appreciated.
PHP is a server-side language. Audio is a client-side issue. PHP has no native multimedia capabilities of its own. To handle voice recording, you'd need a Java or Flash applet. PHP's involvement would begin/end in acceping a file from that applet and storing it on the server.