Newbe to SQL & MyDac
Posted: Fri 13 Apr 2007 14:21
I need help on how to get a selected item from a database and I allso need help on getting all current IDs from a database
thats my database
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
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