Matt M
Member since Dec 14, 2009
- Profile: /members/4952-matt-m.htm
- URL: http://www.icore-studios.com
- Comments: 2
Recent Blog Comments By Matt M
-
Null Pointers Are Another Name For Undefined Values
Posted on Dec 14, 2009 at 2:11 PM
Ah yeah, I have 2 queries I use, depending on whether page = 0 or not (0 = ToC) My first post was a ToC attempt, while this latest post was of a specific page. The error occurred in /logic/book.cfm: line 7 5 : FROM book_list_chapter 6 : WHERE LINKbook = '#URL.ID#' 7 : AND chapternumber = '#URL... read more »
-
Null Pointers Are Another Name For Undefined Values
Posted on Dec 14, 2009 at 11:49 AM
Application.cfc - OnRequestStart : <cfparam name="URL.page" default="0"> <cfif NOT isNumeric(URL.page) OR URL.page LT 1> <cfset URL.page = 0> </cfif> and in the page that calls the variable: ... <cfif URL.page> <cfquery name="GETchapter" datasource="#applica... read more »