How can I get this to work? I am new to cold fusion and I cannot seem to get this to work. What am I doing wrong?
<cfhttp url=" method="GET">
</cfhttp>
<!--- Extract preformatted results --->
<cfset text = #CFHTTP.FileContent#>
<cfset begin = Find("Current Conditions</font></a></font><br>","#text#">
<!--- if incorrect results are returned, print error --->
<cfif #begin# lt 1>
<cfoutput>
<b>An Error occured, please try again. (Make sure to specify a proxy server if you are behind a firewall.)</b>
</cfoutput>
<cfabort>
</cfif>
<cfset begin = begin + 51>
<cfset output = RemoveChars('#CFHTTP.FileContent#',1,begin)>
<cfset nofooter = Find("<!-- 5 DAY HTML END -->","#output#">
<cfset output = RemoveChars('#output#',#nofooter#,20000)>
<!--- Output preformatted results --->
<table width=450>
<tr>
<td>
<cfoutput>#output#</cfoutput>
</td>
</tr>
</table>
<cfhttp url=" method="GET">
</cfhttp>
<!--- Extract preformatted results --->
<cfset text = #CFHTTP.FileContent#>
<cfset begin = Find("Current Conditions</font></a></font><br>","#text#">
<!--- if incorrect results are returned, print error --->
<cfif #begin# lt 1>
<cfoutput>
<b>An Error occured, please try again. (Make sure to specify a proxy server if you are behind a firewall.)</b>
</cfoutput>
<cfabort>
</cfif>
<cfset begin = begin + 51>
<cfset output = RemoveChars('#CFHTTP.FileContent#',1,begin)>
<cfset nofooter = Find("<!-- 5 DAY HTML END -->","#output#">
<cfset output = RemoveChars('#output#',#nofooter#,20000)>
<!--- Output preformatted results --->
<table width=450>
<tr>
<td>
<cfoutput>#output#</cfoutput>
</td>
</tr>
</table>