fazzfarrell Posted September 26, 2006 Share Posted September 26, 2006 I am trying to create a language switcher, I have the languages in a database that have an ID 'ENG' 'GER' etc. I want the default to be english and from a dropdown choose the other launguesAny on help? Link to comment https://forums.phpfreaks.com/topic/22080-language-switcher/ Share on other sites More sharing options...
steveclondon Posted September 26, 2006 Share Posted September 26, 2006 mmm need to give alot more information than that. If you have the database model done correctly that is the major part of this anyway. Which bit you stuck on Link to comment https://forums.phpfreaks.com/topic/22080-language-switcher/#findComment-98805 Share on other sites More sharing options...
fazzfarrell Posted September 26, 2006 Author Share Posted September 26, 2006 This is my database:CREATE TABLE `langheaders` ( `ID` int(11) NOT NULL auto_increment, `LangID` text NOT NULL, `Hed1` text NOT NULL, `Hed2` text NOT NULL, `Hed3` text NOT NULL, PRIMARY KEY (`ID`)) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ;-- -- Dumping data for table `langheaders`-- INSERT INTO `langheaders` (`ID`, `LangID`, `Hed1`, `Hed2`, `Hed3`) VALUES (1, 'ENG', '1. Select A Vehicle ', '2. Select A Model Year', '3. Select The Document Language'),(2, 'DUT', '1. Selecteer een Voertuig ', '2. Selecteer een Taal ', '3. Selecteer een Modeljaar'),(3, 'FRN', '1. Choisissez Un Véhicule ', '2. Choisissez Une Langue', '3. Choisissez Une Année Modèle'),(4, 'GER', '1. Wählen Sie Einen Träger Vor ', '2. Wählen Sie Eine Sprache Vor', '3. Wählen Sie Ein Vorbildliches Jahr Vor'),(5, 'ITA', '1. Selezioni Un Veicolo ', '2. Selezioni Una Lingua', '3. Selezioni Un Anno Di modello'),(6, 'POR', '1. Selecione Um Veículo ', '2. Selecione Uma Língua', '3. Selecione Um Ano Modelo \r\n'),(7, 'SPN', '1. Seleccione Un Vehículo ', '2. Seleccione Una Lengua', '3. Seleccione Un Año Modelo');I have the english in the site at the moment. I have a link to a page with a drop down menu with the list of languagesEnglish ENGFrench FRNGerman GER etcWhen you chose your languge it goes back to the previous page, I want the page to default to the chosen language Link to comment https://forums.phpfreaks.com/topic/22080-language-switcher/#findComment-98818 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.