<?xml version="1.0" encoding="UTF-8" ?>
<cfparam name="URL.Badge" default="1001">
<cfquery name="getMsg" datasource="voxeo" dbtype="ODBC">
	SELECT Name, Badge, Position FROM Employees WHERE Badge=#URL.Badge#
</cfquery>

<callxml>

  <block>
	<text>
		<cfoutput>
		Hi, #getMsg.Name#. Your have badge number #getMsg.Badge# and are employed as a #getMsg.Position#.
		</cfoutput>
	</text>
  </block>
	<hangup/>
	
</callxml>