Published on 2005-08-28 16:03:02

While developing IVR application with VoiceXML we need sometimes to offer a service of call transfer. And certainly you know how to transfer a call with VoiceXML using the tag "transfer".

So I have written this PHP Voice module to make call transfer more easy using PHP VoiceXML class. A small sample usage could be :

$v = new gonx_vxml(); $v->start_vxml("", "", "", "", "", "2.0"); $v->load("transfer",array("123456789","please wait, transferring your call to 1 2 3 4 5 6 7 8 9 ")); $v->end_vxml(); $v->generate();

Read More


Related Entries

Member of the PHP Magazine Network, Copyright (C) 2005-2008 phpmagazine.net All Rights Reserved