Linda, I sent you a priv message
you know what would be really cool, if there was an option in the option types for html or code
where we can now choose, radio, text, dropdown..
there should eb a code/html custom option
then i could choose that, for the size range
and in the custom code add
Code:
<?php
$i = "-60";
while ($i <= 60):
echo "<option value=$i>$i</option>";
$i++;
endwhile;
?>
and then my options would show the +60 to -60 dropdown, without even having to add all the damn attribute options one by one in the firstplace, and it would also allow for a single sql to get that code statement rather than hundreds for all the options one at a time.
or even of it allowed a custom array to be typed in and then displayed through the same place
you could choose 'array' instead of text, radio, dropdown
and then just type an array of dropdown choices into the attribute section where it asks for rows, etc
1,2,3,4,5,6
or
Blue. Red. Green, Black
whatever
it would speed up the adding of certain attribute/option types, and cut down on sql calls
Steven