Hi Guys, If i have the following script:
<?=$row['genre']?>
how do i change it to become a link? I want it to direct to http://localhost/band_profile.php?id={$row['band_id']}
Cheers, drew
<a href="http://localhost/band_profile.php?id=<? echo $row['band_id']; ?>"><?=$row['genre']?></a>