if you know the row number you want, you can do a mysql_result for example you do a search in the text colum for the word apple. one result is found it will be labled as row 0 in mysql, so you can just do
$word='apple';
$query=("select text from ds_search where text like '$word' ");
$result=mysql_result($query, 0, 'text');
or for multiple results ::
$howmany=mysql_num_rows($query);
for ($i=0; $i<$howmany; $i++){
$result=mysql_result($query, $i, 'text');
hope it helps