I am using the array below to echo a HTML select box but I haven't been able to figure out how to do the loop using the unique values:
sid evid
13 1
14 1
15 2
16 3
I am trying to loop through the above array by the unique values stored in 'evid' so I can create a select box which groups by 'evid'. At the moment, my loop produces 4 select boxes when it should only produce 3. sid 13 and 14 is outputting a select box each since my code isn't grouping them but I just can't get my head around how I get these two values to group during the loop.
Anyone have any suggestions?
EDIT
Code I'm using:
<?php while ($s = mysql_fetch_array($sessions)){ ?>
<?php foreach ($evs as $ev){
if ($ev['evid'] == $s['evid']){
?>
<form action="" method="">
<fieldset>
<ul>
<li>
<label></label>
<select name="sessions[]">
<option name="sessions[]" value="<?php echo $s['sid']; ?>"><?php echo $s['sname']; ?></option>
</select>
</li>
</ul>
</fieldset>
</form>
<?php } // end if match ?>
<?php } // end foreach ?>
<?php } // end while ?>
distinctorgroup byclause rather than doing it in a loop, which will probably be less efficient. – mdm Jun 8 '11 at 15:32array_unique()because you want to keep duplicates. This doesn't make sense. – AJ. Jun 8 '11 at 15:48