hello,
I'm displaying an image which has been uploaded by a user.
I want to display similar uploads in the sidebar, based on the title.
for example, if the current post has a title of 'a photo of trees', id like to display results that have a similar title. I realise words like 'a' and 'of' are very common, so is there a way to strip out only words that are say 3+ characters long? i.e display results that have a title containing 'photo' and/or 'trees'
Im using the LIKE query elsewhere, but if i use it here I get no results as the database is obviously searching for a whole title that contains the current title..( using LIKE '%$title%' at the moment)
thanks for any help