ok maybe you can help me here ... my lists are actually looking something like this ...a sample list from one of the columns (skills)... NMR, Mass Spectrometry, Molecular Biology.
The way i'm putting these into the database is by using a form with a multiple selects dialog box and then using php to make it into a readable list delimited by comma's.
if ($skills)
{
$skills = implode($skills, ", ");
}
So what I'm trying to do it set up a method to search the skills column (and a bunch of other columns at the same time) so that users can specify which skills (and whatever else) are necessary and then they can see the correlate resumes for people who have checked off those skiIls (and have the other correlate qualifications).
So if someone checked off NMR and Molecular Biology as required skills. I want to go through the skills of all the entrants and find those that have both. Then the resume of those individuals would be displayed.
I make no bones about the fact that i really have no background with this at all and have been putting this whole thing together by the seat of my pants. I've done a lot with writing to and reading from databases to power a website, but this is an entirely new realm for me and I'm kinda lost.
If you see a different direction i should be going in regarding setting up this database for ease of (what i consider complicated) searching, please let me know. I'm trying to learn this from scratch and the MySQL documentation and o'reilly aren't helping me much with this part.
chris