Skip to content

Instantly share code, notes, and snippets.

@andyj
Created January 25, 2012 13:21
Show Gist options
  • Save andyj/1676224 to your computer and use it in GitHub Desktop.
Save andyj/1676224 to your computer and use it in GitHub Desktop.
o2 Mobile number checker
<cfset o2 = GetHttpRequestData() >
<table>
<cfloop collection="#o2.headers#" item="key" >
<tr>
<cfoutput>
<th>#key#</th>
<td>
<cfif trim( key ) EQ "x-up-calling-line-id" >
<span class="label important" >#o2.headers[key]#</span>
<cfelse>
#o2.headers[key]#
</cfif>
</td>
</cfoutput>
</tr>
</cfloop>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment