|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: |
CREATE TABLE IF NOT EXISTS `sitelok` (
`Selected` varchar(3) default NULL,
`Created` varchar(6) default NULL,
`Username` varchar(50) NOT NULL,
`Passphrase` varchar(50) default NULL,
`Enabled` varchar(3) default NULL,
`Name` varchar(50) default NULL,
`Email` varchar(50) default NULL,
`Usergroups` varchar(255) default NULL;
PRIMARY KEY (`Username`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
INSERT INTO `sitelok` (`Selected`, `Created`, `Username`, `Passphrase`, `Enabled`, `Name`, `Email`, `Usergroups`) VALUES
('No', '010101', user1', 'password1', 'Yes', 'John', 'some@domain.com', 'Za1^Jeugdtrainer'),
('No', '091106', 'user2', 'password2', 'Yes', 'Marie, 'some@domain.com', 'Za2^Jeugdtrainer'),
('No', '091107', 'user3', 'password1', 'Yes', 'Rick', 'some@domain.com', 'Zo1^Jeugdtrainer'),
('No', '091107', 'user4', 'password1', 'Yes', 'Joe', 'some@domain.com', 'D1^Zo1^Za1^Jeugdtrainer');
CREATE TABLE IF NOT EXISTS `groepen` (
`ID` int(10) NOT NULL auto_increment,
`forum` int(11) NOT NULL default '0',
`naam` varchar(200) NOT NULL,
`soort` int(10) NOT NULL,
`foto` varchar(250) NOT NULL,
`afkorting` varchar(10) NOT NULL,
`werkafkorting` varchar(6) NOT NULL,
`titel` varchar(100) NOT NULL;
UNIQUE KEY `ID` (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=73 ;
--
-- Gegevens worden uitgevoerd voor tabel `groepen`
--
INSERT INTO `groepen` (`ID`, `forum`, `naam`, `soort`, `foto`, `afkorting`, `werkafkorting`, `titel`) VALUES
(27, 1, 'Senioren Zaterdag 1', 10, 'ZA12010.jpg', 'ZA1', 'za1', 'Senioren: Zaterdag 1'),
(28, 1, 'Senioren Zaterdag 2', 10, 'za2.jpg', 'ZA2', 'za2', 'Senioren: Zaterdag 2'),
(29, 1, 'Senioren Zaterdag 3', 10, 'za32.jpg', 'ZA3', 'za3', 'Senioren: Zaterdag 3'),
(30, 1, 'Senioren Zondag 1', 10, 'zo1.jpg', 'ZO1', 'zo1', 'Senioren: Zondag 1'),
(31, 1, 'Senioren Zondag 2', 10, 'zo2.jpg', 'ZO2', 'zo2', 'Senioren: Zondag 2');
|
Advertisement
| Hall of Fame |