idig Posted April 18, 2006 Share Posted April 18, 2006 hi appreciate any help.i have a main array and a 2ndary array to select from. once i have selected for example uk from the main array and london from the 2ndary array, i submit and have a resultant array called for eg 'location' now this array when echo'd gives numbers and not the strings i.e uk and london. what do i need to do to get the strings out?thanksclive Link to comment https://forums.phpfreaks.com/topic/7700-quickform-passing-data-from-hierselect/ Share on other sites More sharing options...
ToonMariner Posted April 18, 2006 Share Posted April 18, 2006 I am assuming you have something like...$arr = array('London', 'Paris');...<select name="sel"><option value="0">London</option><option value="1">Paris</option></select>now there are two ways of doing this...either change the html to this<option value="London">London</option><option value="Paris">Paris</option>or (and probably more useful!)in the script accepting the data have your array(s) once more$arr = array('London', 'Paris');and then user $arr[$_POST['sel']] Link to comment https://forums.phpfreaks.com/topic/7700-quickform-passing-data-from-hierselect/#findComment-28106 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.