SELECT id_num
FROM table
WHERE text LIKE "%$bbox%";
Without knowing how your database is setup, and what tables/fields you have that's as specific as I can get.
Basically look at the LIKE operator in MySQL, it will tell you how to use it and what it is for. You should know that LIKE is a very slow operator, and the larger your fields, and the larger your database the slower your queries are going to run.
You might want to think about creating some referance tables that will store all of the keywords from an article since it would be easier to search and return information from.