the way I have it is like this right now...
<select name="sizes" size="5" multiple id="sizes">
<?php
do {
?>
<option value="<?php echo $row_sizes['size']?>">
<?php echo $row_sizes['sizename']?></option>
<?php
} while ($row_sizes = mysql_fetch_assoc($sizes));
$rows = mysql_num_rows($sizes);
if($rows > 0) {
mysql_data_seek($sizes, 0);
$row_sizes = mysql_fetch_assoc($sizes);
}
?>
</select>
I have all of the sizes in a table in sql and I was not sure if that would be the best way to do that. Would it be easier to just do it statically and not get that data from sql?
I am a real noob and have spent a tone of time on this dang project. I probably should have not taken on this project untill I knew more about all of this but it is too late now.
Thanks for the help.