$query = "SELECT *, SUBSTRING_INDEX(full_add, ' ', 5) AS keywords FROM houses WHERE full_add like '%$Text_Box_17%'";
(However, it's generally a good idea to explicitly list each column you want to select rather than using "*", in order to avoid retrieving more data than you actually need and to make it clear exactly what columns are being retrieved in what order.)