my goal is to query artist name from db which that is starting with a certian first letter sample if L, queries lady gaga, lady antebellum and etc...each artist name contains different songs. lady gaga has bad romance, pokerface, and etc...
now my problem is that it my query repeats lady gaga since it has two songs...
considering my db table has id, artist, title, content
sample db datas:
1 lady gaga bad romance content
2 lady gaga poker face content
3 lady antebellum idk content
my query would result
lady gaga
lady gaga
lady antebellum
having a hard time to adjust this one to not query repeating artist...
$query = "select id, artist from lyrics where artist like 'a%' order by artist ASC";
$result = mysql_query($query) or die ("Error in query: $query . " . mysql_query());
if (mysql_num_rows($result) > 0)
{
while ($row = mysql_fetch_array($result))
{
$id = $row['id'];
$artist = $row['artist'];
?>
<li><b><a href="content.php?id=<?php echo $id; ?> "><?php echo $artist . ' lyrics'; ?></a></b><br>
<?php
}
}
else
{
echo 'No Content';
}
thanks in advance for helping...