Jump to content

Paulk

Members
  • Posts

    1
  • Joined

  • Last visited

Everything posted by Paulk

  1. Hello team, I tested the training here: https://www.w3schools.com/php/php_ajax_database.asp It works fine but I obtain only the first line (ID) in the Placeholder. So, to go ahead with my project, is to select by brand or by modele. My database is like this: CREATE TABLE IF NOT EXISTS `allbrands` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `Brand` varchar(60) COLLATE latin1_general_ci DEFAULT NULL, `Model` varchar(60) COLLATE latin1_general_ci DEFAULT NULL, PRIMARY KEY (`ID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=1 ; -- -- Table `allbrands` -- INSERT INTO `allbrands` (`ID`, `Brand`, `Model`) VALUES (1, 'Peugeot', '108'), (2, 'Peugeot', '208'), (3, 'Renault', 'Clio'), (4, 'Dacia', 'Sandero'); So, in the dropdown list, I would like listed all brands and that Ajax go to search the selected brand in database and display the brands and models according the one selected. If I'm using exactly what it describe in the training, the got only the first line where the ID is 1, means "Peugeot 108" Clearly, if I selected "Peugeot" in dropdown list, I should obtain this result in Placeholder: Peugeot 108 Peugeot 208 Could you help me to obtain that? Thank you Paul
×
×
  • Create New...