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 Quote Link to comment 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']] Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.