When I add this line in my php code I get an error message:
I am using PHP 5.1.1
<?php
echo("<?xml version="1.0"?>\n");
echo("<vxml version="2.0">\n");
?>
Please advise.
We've Moved! Please visit our new and improved forum over at our new portal: https://portal.plumvoice.com/hc/en-us/community/topics
PHP tutorial
IVR code using PHP
Hi,
In your IVR code, you need to escape any " characters that are part of the string argument:
<?php
echo("<?xml version=\"1.0\"?>\n");
echo("<vxml version=\"2.0\">\n");
?>
Also, it's more appropriate to search for IVR answers to such questions here: http://www.php.net.
Regards,
Plum Support
In your IVR code, you need to escape any " characters that are part of the string argument:
<?php
echo("<?xml version=\"1.0\"?>\n");
echo("<vxml version=\"2.0\">\n");
?>
Also, it's more appropriate to search for IVR answers to such questions here: http://www.php.net.
Regards,
Plum Support