Hi,
i am looking to be able to turn a string of values in one cell (eg. M|L|XL|XXL )
into a drop down list box of choices. i am able to enter the data directly into the cell so i can enter the cell data as M|L|XL|XXL . Am i going to be able to turn those few valuse into a list box?
thanks
i think this is what you need to do:
<? $string="M|L|XL|XXL";
$array=split("|",$string); $count=count($array); $i=0;
echo "<select name=size>"; while($i < $count){ echo "<option>$array[$i]</option>"; ++$i; } echo "</select>"; ?>