Hello CF Coders,
I have another question. Basically i want to use a cfif statement with out haveing to use it until im ready. Ill give an example and problem i getting.
page.cfm
<body>
<cfif #URL.get#> or <cfif isDefined(URL.get)>
// execute code
</cfif>
<a href="page.cfm?get=this">click</a>
</body>
When i load the page, i get a "Element GET is undefined in URL" error. Basically i need to know how to do this like in php where i can call the if statement anytime and not get in error.. example of php
page.php
<?php
if(isset($_GET['name'])) {
// do something
}
?>
<a href="page.php?get=this">click</a>
If more clarification is needed, just let me know.
Im sure this is possible, but im stuck. Im on the Adobe Cookbook alot, but havent came across anything yet. I really appreciate the help if provided.