Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 01-17-2013, 06:46 AM   PM User | #1
jeddi
Senior Coder

 
Join Date: May 2006
Posts: 1,544
Thanks: 26
Thanked 4 Times in 4 Posts
jeddi has a little shameless behaviour in the past
Constructing a classification selection page

Hi,

I want to have a form where a user can select 3 classifications
from an automatically generated list of categories.

There will be about 50 categories to begin with and then later probably a max of 200.

I was going to just use 3 normal html drop-down boxes, but with this number of items it will be too cumbersome.

So I want to set up single page and list the categories in alphabetical order, each with a tick box next to it and request the user to tick up to 3 boxes.

assuming I have a MySQL table called cats,

I can display them with:

PHP Code:
$sql "SELECT * FROM cats ORDER BY cat_id";
$result mysql_query($sql) or die("could not lists CATS"mysql_error() );  
while (
$row mysql_fetch_assoc($result)) {
    
extract($row);
  
etc 
But how would have a tick box next to each category and then collect the data ?

Thanks for any suggestions.

.
__________________
If you want to attract and keep more clients, then offer great customer support.

Support-Focus.com. automates the process and gives you a trust seal to place on your website.
I recommend that you at least take the 30 day free trial.
jeddi is offline   Reply With Quote
Old 01-17-2013, 09:52 PM   PM User | #2
sunfighter
Senior Coder

 
Join Date: Jan 2011
Location: Missouri
Posts: 2,491
Thanks: 18
Thanked 361 Times in 360 Posts
sunfighter is on a distinguished road
Yeah, give up the "you can select 3 classifications " idea. It's just a big head ache that adds nothing to your site.

I'd put a simple "Choose another classification" button on your pages that does an automatic redisplay of the first or the Classification Page so they can pick another one.

Make the button colorful predominant and position:fixed;
sunfighter is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 07:45 AM.


Advertisement
Log in to turn off these ads.