Skip to main content
Participant
May 31, 2008
Answered

Invalid token '?' found on line 63 at column 22.

  • May 31, 2008
  • 3 replies
  • 2373 views
I just went to upload a new image and encounter this error message. Can someone help me? thanks
This topic has been closed for replies.
Correct answer Newsgroup_User
> The CFML compiler was processing:<ul><li>an expression beginning with
> "isdefined", on line 63

Did you look at the bit of code it's pointing you to?


> <CFIF isdefined (?url.intro?) NOT>

Is this correct syntax for either a <cfif> statement or an isDefined()
statement?

--
Adam

3 replies

BKBK
Community Expert
Community Expert
June 2, 2008
PoorTeck,

That line should be <CFIF isdefined("url.intro")> or <CFIF NOT isdefined("url.intro")>. As others have suggested, you have to read up to at least know which is which.



Inspiring
May 31, 2008
Your error message gave you the exact problem and Adam emphasized it for you. What is it that you are not sure about?
PoorTeckAuthor
Participant
May 31, 2008
Dan, thanks for your time, but talk to me in layman's term. I can understand the HTML code...but it is getting fuzzy in CF for me.

thanks
Newsgroup_UserCorrect answer
Inspiring
May 31, 2008
> The CFML compiler was processing:<ul><li>an expression beginning with
> "isdefined", on line 63

Did you look at the bit of code it's pointing you to?


> <CFIF isdefined (?url.intro?) NOT>

Is this correct syntax for either a <cfif> statement or an isDefined()
statement?

--
Adam
PoorTeckAuthor
Participant
May 31, 2008
Adam, thanks for the reply. I am not sure..? Here is the entire code.