myfile = mysql_query($query_myfile, $db) or die(mysql_error());
$totalRows_myfile = mysql_num_rows($myfile);
$typ_d = '';
$test='';
while ( $row_myfile = mysql_fetch_assoc($myfile) )
{
if ( $typ_d != $row_myfile[ 'typ_d' ] )
{
$typ_d = $row_myfile[ 'typ_d' ];
echo "<h2>$typ_d</h2>";
}
if ( $test != $row_myfile[ 'test' ] )
{
$test = $row_myfile[ 'test' ];
echo "<h3>$test</h3>";
}
echo "<li><a href=\"myfileDetail.php?myfile_id=".$row_myfile['myfile_id']. "\">";
echo $row_myfile['shortname'].' ';
echo $row_myfile['name']; ?></a></li>
<?php } ?>
how can I use <ul> tag to have the result like this.I want to have each $test elements to be enclosed in <ul> </ul>
first groups
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
second groups
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
.
.
.

TeaCoffeMilkare coming from and how they relate to you code above. – DaveRandom Jan 19 '12 at 17:20<li>per iteration - how do you decide where the<ul>break will go? – DaveRandom Jan 19 '12 at 17:22