Ok, i solved it "somehow". Now what i am wondering is can i anyway stop pages from being listed in the search if it has already been brought back from the database. The primary key is "id" if that is needed. The code is below
$splitSearch = preg_split('/[\s,+]+/', $_POST["keywords"], -1, PREG_SPLIT_NO_EMPTY);
foreach($splitSearch as $key => $value) {
$searchResult = mysql_query("SELECT * FROM news WHERE news_title LIKE '%$value%' OR full_news LIKE '%$value%' ORDER BY news_id DESC LIMIT $limit");
while($searchResultArray = mysql_fetch_array($searchResult)) {
echo $searchResultArray["news_id"];
}
}