I think I found a workable answere:
I queried my database as ususal with $result=mysql_query(...)
Then arrayed $result with mysql_result:
for($i = 0; $i < 10; ++$i)
{
$item[$i]=mysql_result($result, $i);
}
This arrays the first colomn of fields in my table to $item, each with a unique key.
echo($item[1]);
echo($item[2]);....
echo's each individual value in the array by its key. This way I can refere to table data later in my script; each specific cell waranting its own array key.