ColdFusion CGI Variables, Hot Linking, And Poor Documentation

<!---
	Grab the remote image to save locally. In this example, we
	are grabbing the image as a binary and then writing it to
	disk.
--->
<cfhttp
	url="http://matureladies.adultbouncerhost.com/0007/mat1.jpg"
	method="GET"
	result="objSpider"
	resolveurl="yes"
	useragent="#CGI.http_user_agent#"
	getasbinary="yes"
	throwonerror="yes">
 
	<!---
		Trick the remote server into thinking you are browsing
		it's pages. Do this by sending a LOCAL url (local
		relative to the remote machine) as the referer.
 
		NOTE: I am now just passing "referer", NOT the original
		"http_referer".
	--->
	<cfhttpparam
		type="CGI"
 
		name="referer"
 
		value="http://matureladies.adultbouncerhost.com/0007/index.html"
		encoded="false"
		/>
 
</cfhttp>

For Cut-and-Paste