For my website in PHP, we are generating mobile website and have to implement a voice recoding facility via from any mobile device, do you guys know any better option to easily integrate the same with my PHP mobile website.
I have tried some Java Applets, but those are not working into iPhone / Android, so any sim开发者_如何学Gople tool, which can record voice with any mobile device and option save / play the recorded voice on my website and mobile both side.
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.
精彩评论