Let me break it down. The Caller calls the number, the voiceXML application picks up and asks the caller to type in a reference number form the keypad -- number?length=6 -- now the VoiceXML application sends this number to the php via a submit statement in the VoiceXML application with a POST action...
Hi volka, I did do the multiple submit and it worked (for the audio files) i just cant get numbers to work with php. The VoiceXML submit is: <submit next="http://www.domain.com/folder/submit.php" enctype="multipart/form-data" namelist="rec_name contact_number rec_audition&qu...
Hi there, I've got a VoiceXML application that asks the caller to input his/her contact number, then VoiceXML post this number to a php script, the php script should now store this value in a mySQL database. The code that is used in php to get the number is: $number = ""; $tmpNumber = $HTT...
I need to send a value from php to a VXML app.
The VoiceXML app sends a reference number to php, php checks in the database if the number is there and sends back a string value containing a directory to the VoiceXML app.
OK thanx. But i need to store the three variables seperatly in the database, each variable in its own database field. If im understanding your code right, it only sends over one variable. In my VXML code i post the variables as: <submit src="http://www.########.co.za/####/submit.php" encty...
Well, The voice app gets a callers name, contact number, and has a chance to leave a message. After that is done, the three variables need to be sent to php so that php can store them in a mySQL database. The name is recorded over the fone, the contact number is being keyed in from the telephone key...