Skip to main content
Participant
June 2, 2009
Question

Change this query

  • June 2, 2009
  • 1 reply
  • 637 views

hai..

im noobies in cold fusion

i need some help to solve problem that i have.

the thing is to change result from query below into hidden text view.

<td width="121">
     <select name="lokasi">
  <cfoutput query="info_lokasi">
  <option value='#info_lokasi.lk_kod#' <cfif info_lokasi.lk_kod eq info_sek.sk_kod_lokasi>selected </cfif>> #ucase(info_lokasi.lk_ket)#  
    </cfoutput>
     </select>    </td>

any one can help me. please..

thanks

This topic has been closed for replies.

1 reply

ilssac
Inspiring
June 3, 2009

Sounds like you are new to web development over all, since "hidden text view" means nothing OR more accurately  it can mean many different things such as:

<!--

<td width="121">
     <select name="lokasi">
  <cfoutput query="info_lokasi">

<option value='#info_lokasi.lk_kod#' <cfif info_lokasi.lk_kod eq
info_sek.sk_kod_lokasi>selected
</cfif>> #ucase(info_lokasi.lk_ket)# 
    </cfoutput>
     </select>    </td>

-->

That would hide the text from view by making it a comment.  But I doubt that is what you intended.

Try expressing your goal irregardless of if you are using ColdFusion or not.