echo ""; $query = "select * from movie_songs_download where lower(movie) like '%$test%'"; $result = mysql_query($query); echo ""; // keeps getting the next row until there are no more to get while($row = mysql_fetch_array( $result )) { // Print out the contents of each row into a table echo ""; } echo "
Movie Song
"; echo $row['Movie']; echo ""; echo $row['Link']; echo "
";