sending variables with coldfusion
Posted: Sun Sep 28, 2008 8:18 am
please kindly help out with a coldfusion script that will be able to handle variables ( i.e customerid and age ) sent from a vxml script.
can i get an equivilent of the following php script in coldfusion, please!!!
<?php
header("Content-type: text/xml");
echo("<?xml version=\"1.0\"?>\n");
$customerid = $_GET[customerid];
$age = $_GET[age];
?>
<vxml version="2.0">
<form>
<block>
<prompt>
Your customer identification number is <?php echo($customerid)?>.
</prompt>
<prompt>
Your age is <?php echo($age)?>.
</prompt>
</block>
</form>
</vxml>
can i get an equivilent of the following php script in coldfusion, please!!!
<?php
header("Content-type: text/xml");
echo("<?xml version=\"1.0\"?>\n");
$customerid = $_GET[customerid];
$age = $_GET[age];
?>
<vxml version="2.0">
<form>
<block>
<prompt>
Your customer identification number is <?php echo($customerid)?>.
</prompt>
<prompt>
Your age is <?php echo($age)?>.
</prompt>
</block>
</form>
</vxml>