Code: Select all
CREATE TABLE `Users` (
`ID` int(5) NOT NULL auto_increment, `Name` varchar(50) NOT NULL default '',
`Email` varchar(50) NOT NULL default '',
`Password` varchar(50) NOT NULL default '',
`TimeStamp` varchar(10) NOT NULL default '',
PRIMARY KEY (`ID`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1
this is what am looking to do I want to be able to get all current registerd names and add them to a dropdown list on the sql connection then I want to be able to pull up information on each selected account from drop down can anyone help and supply a working code???
thanks alot