views:

143

answers:

3

I want to make a automated call application, which will dial some mobile numbers, and give the response to them, and also record there voice in wave and text format. is it possible in PHP, or there is any buildin function or classes for doing that?

+1  A: 

ribbit offers an API for making calls, playing files, etc (php link)

Dan Heberden
is ribbit free like tropo, i wass using tropo but the problem is that it is not that flexible as i wanted all the data input from user to be saved in my database...
Harish Kurup
i have not used ribbit...i have used tropo, which i found little bit easy... thank u @Dan Heberden..
Harish Kurup
+1  A: 

Check out Tropo, they have PHP support.

Konstantin Haase
@Konstantin Haase can i connect it through my database??
Harish Kurup
You need some glue code to pipe your data through, but you can access the API from your server (so yes, you can use your database).
Konstantin Haase
is there any example for using Tropo WebAPI in PHP??
Harish Kurup
Somewhere on the site probably, I don't use PHP.
Konstantin Haase
hey! thank u vary much...@Konstantin Haase...
Harish Kurup
+1  A: 

You can use asterisk and implement an IVR flow using AGI php scripts.

Asterisk is an open source telephony project. You install the software on a linux box, then you connect some phone lines (PSTN, ISDN, SIP, whatever).

Asterisk can be controlled by using AGI php scripts to build custom interactions (dial number XXX, play wave "Press one to do this, two to do that", read DTMF input from user, etc).

diciu
thank u @diciu...i have not used asterisk... i am using tropo..as it is bit easy for me to understand....hence i selected the above answer....
Harish Kurup