I am building a search engine and trying to get the title to be a link and in the code it looks like this
echo("<img src='$Thumbnail' width='90' height='75>
<a href=\"watchvideo.php?ID=$id\">$title</a><br />
$description<br />");
and i want the "watchivideo.php?ID=$id" to have the ID of the video in the database, and the link to be the title of the video, but the code is only showing the thumbnail and description, what am i doing wrong in the code?