Ask a Question related to Coldfusion Database Access, Design and Development.
-
quiero mas #1
very quick question
In my database a field is designated as 0 or -1 . When i make my form how do
i set up the drop down menu so that the user chooses yes or no and these
represent 0 or -1 ?
Much appreciated
search page
<cfquery name="English" datasource="simple"> ( English is the language the
user can reply yes or no to)
SELECT Simple.???????
FROM Simple
</cfquery>
<select name="English">
<cfoutput query="English">
<option value="#English#">#English#</option>
</cfoutput> </select>
I hope you can all understand
Best Regards
quiero mas Guest
-
Quick CSS question
Hi, I have a css file that I used when building my template. Now that I'm building additional pages from the template, do I edit the same css file... -
quick MX question....
how do you get rid of that window on the right where it says 'color swatches', 'components', etc.. it really bothers me, it makes the working area... -
Quick question
if you want to select top 100 records, you will use SELECT TOP 100 * FROM tableName Is there anyone knows how to find bottom 100 records? ... -
A Quick Question
Does anyone know if it is possible to create a Flash movie that has the ability to let the user click on a button to begin the installation of a... -
QUICK SSA QUESTION
AIXers, I'm looking for a quicker way to determine the physical locations of ssa drives in a SSA drawer w/o having to use diag/ssa service aides... -
leuqcar #2
Re: very quick question
hello quiero !!!
u cud use the following code :
<select name = "english_lang">
<option value=""></option>
<option value="1">Yes</option>
<option value="0">No</option>
</select>
regards..
kel
leuqcar Guest
-
MikerRoo #3
Re: very quick question
Please read some usability studies.
If this can only be yes or no, use a checkbox.
Selectors annoy the snot out of many (most?) web users and have been proved to greatly increase entry errors.
MikerRoo Guest
-
mxstu #4
Re: very quick question
I agree with MikerRoo. For simple yes or no options, radio buttons are more intuitive and easier to use, providing a higher level of usability.
mxstu Guest
-
quiero mas #5
Re: very quick question
Thanks everyone for your time to respond. I have thought about radio buttons
and check boxes but i wanted to kept continuity.
i will see how all ideas work and get back to youi all
again thanks for your input
regards
quiero mas
quiero mas Guest
-
BKBK #6
Re: very quick question
<cfquery name="English" datasource="simple"> ( English is the language the user
can reply yes or no to)
SELECT Simple.English
FROM Simple
</cfquery>
Your code has quite a few problems. Assuming your database table is
called preferences , fix it with something like:
<cfquery name="languageQuery" datasource="simple">
SELECT userLanguage FROM preferences
WHERE userID = '#input_ID#'
</cfquery>
<!--- English is the language the user can reply yes or no to --->
<cfoutput query="languageQuery">
#userLanguage#: <select name="#userLanguage#">
<option value="yes" selected>yes</option>
<option value="no">no</option>
</select><br><br>
</cfoutput>
BKBK Guest
-
quiero mas #7
Re: very quick question
thanks alot - actually what i am trying to use is
1. let a user decide which language they want
2. pull the apropriate information fom a few different tables
project background: a multilingual hospital guide for non japnese residents
here in japan.
so i have each hospital and its information and then the
quiero mas Guest



Reply With Quote

