|
-
May 15th, 2000, 03:37 AM
#1
Thread Starter
New Member
Hi,
As for your 1st Q, to create a multi select option list you have to use
<SELECT id=selSomeName name=selSomeName multiple>
<OPTION></OPTION>
<OPTION></OPTION>
<OPTION></OPTION>
</SELECT>
You'll receive these values as part of the POST string separated, if I remember correctly by ?. Just print the row string once and you'll see.
The SQL you have to use will look some thing like :
SELECT * FROM tblMyTable WHERE fldMyField = <OPTION1'S value> OR fldMyField = <OPTION2'S value>;
Erez
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|