sorry, heres more info.
These are two of my tables, both in the same database
BlogTable
id int not null primary key auto_increment,
Date date,
BlogTitle text,
Blog text
NewsTable
id int not null primary key auto_increment,
Filename text,
Date date,
Title text,
News text,
User text
Been fiddling round with the code and I tried the following:
select Title, id from NewsTable where Title like \"%$SearchInput%\"
UNION
select BlogTitle, id from BlogTable where BlogTitle like \"%$SearchInput%\"
that seems to work... so I think i'm happy for now 🙂
Thanks for your help.