Skip to content

Instantly share code, notes, and snippets.

@robertmorel-uk
Created January 17, 2020 12:07
Show Gist options
  • Save robertmorel-uk/35d87d02285cd1578955d22af95ef6ec to your computer and use it in GitHub Desktop.
Save robertmorel-uk/35d87d02285cd1578955d22af95ef6ec to your computer and use it in GitHub Desktop.
Mura - if param exists in url
<cfif structKeyExists(url, 'subject')>
<div class="form-group">
<input type="hidden" class="form-control" id="Subject" name="subject" value="#URL.subject#">
</div>
<cfelse>
<div class="form-group">
<input type="hidden" class="form-control" id="Subject" name="subject" value="Not specified">
</div>
</cfif>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment