While Brandon's suggestion gets you over the error message, having looked at your query I am not sure your logic is correct.
Forgive me if my understanding is wrong but are you wanting to join the data from the two tables together in this fashion?
Your query will produce a cartesian product ie every row in misc joined with every row in about. so if you have 100 rows in each you will get 10000 rows back and each row would contain all of the columns in each table. Is this the reslt you require?
The alternative (and what I assume you are after) is to select all of the data from misc followed by all of the data from in about. There are two ways of doing this. Fistly if you want to use only one SQL statement a UNION is required
Select from misc
where LOWER(content) LIKE '%$wrd%'
UNION ALL
Select from about
where LOWER(content) LIKE '%$wrd%'
however Union expects the columns selectted in each part to be the same so the structure of about and misc would need to be the same. You can frig this by selecting simialr columns and giving them the same AS name.
You could select the data from each table into separate arrays held in PHP and then join the data in the program before displaying it.