I've found that there are a few good occasions where it's best not to prefix my variables. When writing a query, if I don't prefix my variable in the WHERE clause, I can route a URL and/or FORM variable to it and it works for both. Like this : WHERE id = #ID# If I were to prefix it like below, I'm locking myself into routing only one type of scope to it, and others would cause an error. WHERE id = #URL.ID#

