I have no code as far as calling it yet because im not even sure how to begin and I don't want to skrew up and make it load none or all of them like i probably will. Here's my database setup though for jobs:
CREATE TABLE IF NOT EXISTS `jobs` (
`id` int(10) unsigned NOT NULL auto_increment,
`position` varbinary(45) NOT NULL,
`company` varbinary(45) NOT NULL,
`posted` varbinary(45) NOT NULL,
`ends` varbinary(45) NOT NULL,
`wage` varbinary(45) NOT NULL,
`category` varbinary(45) NOT NULL,
`desc` varbinary(200) NOT NULL,
`reqs` varbinary(200) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2;