I am designing a database with a search feature for music and I am trying to get the title of a song on a search results page to display the lyrics to the song when the title is clicked.
This is a bit of the script I am using. Please any suggestions would be helpful.
<?php
...
$id = $_GET['id'];
...
...
print '<p class="sansserif"><b>Song title : </b> <a href="search.php?id=<? echo $lyrics; ?>">'.$title.'</a><br />';
...
?>
This is a bit of the script I am using. Please any suggestions would be helpful.
<?php
...
$id = $_GET['id'];
...
...
print '<p class="sansserif"><b>Song title : </b> <a href="search.php?id=<? echo $lyrics; ?>">'.$title.'</a><br />';
...
?>