Posted by tks423 on 05/03/07 04:45
How can I determine the values of a listbox, both unselected or
selected after submitting the form:
Code:
<select name="sel1" size="10" multiple="multiple">
<? PHP code populates listbox ?>
</select>
Do I have to use Javascript to determine the contents, like in the
pseudo code Javscript below. But how would you pass the Javascript
return value to PHP?
Code:
function listBoxContents(sel1)
{
var selLength1 = sel1.length;
var valuesPresent1 = new Array(sel1.length-1);
var i;
for(i=0; i<=selLength1-1; i++)
{
valuesPresent1[i]=sel1.options[i].valueOf();
}
return valuesPresent1;
}
[Back to original message]
|