CREATE TABLE IF NOT EXISTS `videos` (
`id` int(6) NOT NULL AUTO_INCREMENT,
`code` text NOT NULL,
`proid` int(5) NOT NULL,
`views` int(9) NOT NULL,
`maincat` varchar(24) NOT NULL,
`subcat` varchar(96) NOT NULL,
`when` int(16) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ;
--
-- Dumping data for table `videos`
--
INSERT INTO `videos` (`id`, `code`, `proid`, `views`, `maincat`, `subcat`, `when`) VALUES
(1, '<iframe width="560" height="315" src="http://www.youtube.com/embed/F29Uzh7oE9g" frameborder="0" allowfullscreen></iframe>', 7, 31, 'Accounting Classes', '', 0),
(2, '<iframe width="560" height="315" src="http://www.youtube.com/embed/tyNWQZ-_cuA" frameborder="0" allowfullscreen></iframe>', 7, 77, 'Accounting Classes', '', 0),
(3, '<iframe width="560" height="315" src="http://www.youtube.com/embed/VaK_kXfQozo" frameborder="0" allowfullscreen></iframe>', 7, 52, 'Accounting Classes', '', 0),
(4, '<iframe width="560" height="315" src="http://www.youtube.com/embed/1_HrQVhgbeo" frameborder="0" allowfullscreen></iframe>', 9, 6, 'Technology', 'Java Classes', 0),
(5, '<iframe width="420" height="315" src="http://www.youtube.com/embed/_LanZgLozR8" frameborder="0" allowfullscreen></iframe>', 7, 24, 'Technology', 'Java Classes', 0);
[code]CREATE TABLE IF NOT EXISTS pros
(
id
int(11) NOT NULL AUTO_INCREMENT,
category
varchar(24) NOT NULL,
fname
varchar(36) NOT NULL,
lname
varchar(24) NOT NULL,
company
varchar(64) NOT NULL,
title
varchar(36) NOT NULL,
subcategory
varchar(255) NOT NULL,
fullbio
text NOT NULL,
photo
varchar(255) NOT NULL,
stuff
blob NOT NULL,
PRIMARY KEY (id
)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ;
–
– Dumping data for table pros
INSERT INTO pros
(id
, category
, fname
, lname
, company
, title
, subcategory
, fullbio
, photo
, stuff
) VALUES
(3, ‘Finance’, ‘Bob’, ‘Numbers’, ‘Goldman Sachs’, ‘Foreign Asset Examiner’, ‘Investment Banking’, ‘’, ‘’, ‘’),
(5, ‘Technology’, ‘Jim’, ‘Minny’, ‘Toulous’, ‘Thug’, ‘I was born. I am alive.’, ‘I was born. Went to school. Got married. Had kids. I am still alive.’, ‘2012-02-17 14-21-32.919.jpg’, ‘’),
(6, ‘Technology’, ‘Twark’, ‘Main’, ‘Mudd River’, ‘Chief Technical Officer’, ‘I have been in the tech industry since 1893. I have seen many changes but never as many changes as Mrs. Main’‘s hair-do.’, ‘In the beginning man just wanted to eat. Every advance in technology since that date has been incumbent on that primal desire. No technology would have ever advanced had someone not been physically hungry for good old food.’, ‘’, ‘’),
(7, ‘Technology’, ‘Barral’, ‘Rover’, ‘John Smith’, ‘Chief Technical Officer’, ‘I have been in the tech industry since 1893. I have seen many changes but never as many changes as Mrs. Main’‘s hair-do.’, ‘In the beginning man just wanted to eat. Every advance in technology since that date has been incumbent on that primal desire. No technology would have ever advanced had someone not been physically hungry for good old food.’, ‘RayPalermo_20120523_014-Edit2.jpg’, ‘’),
(8, ‘Technology’, ‘Moose’, ‘Rabbit’, ‘Musical Beats’, ‘Chief Technical Officer’, ‘I have been in the tech industry since 1893. I have seen many changes but never as many changes as Mrs. Main’‘s hair-do.’, ‘In the beginning man just wanted to eat. Every advance in technology since that date has been incumbent on that primal desire. No technology would have ever advanced had someone not been physically hungry for good old food.’, ‘user-experience.jpg’, ‘’),
(9, ‘Accounting’, ‘Wes’, ‘S’, ‘Middle Market PE firm’, ‘Associate’, ‘Wes works for an middle market private equity firm.’, ‘’, ‘’, ‘’);[/code]