Hello, I have a music website and users can add songs to my database with song information.
Example: The Lazy Song (Happy Hotdog Remix)
mysql_query(“SELECT * FROM music WHERE musictitle=‘search between ( and )’”);
I would like to know how I would search the string for just the characters inside the brackets, I would like to add a “More remix’s by Happy Hotdog”, Although I can’t use use the term LIKE because it fetches the other results by the same title, I just want the songs with that particular remix?
Any help :O?