Jump to content

quickform - passing data from hierselect


idig

Recommended Posts

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?

thanks
clive
Link to comment
https://forums.phpfreaks.com/topic/7700-quickform-passing-data-from-hierselect/
Share on other sites

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']]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.