Copy link to clipboard
Copied
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
Copy link to clipboard
Copied
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.