Can I modify the result that I have received from mysql_query than reset the pointer with mysql_data_seek($result, 0) and process the output like from normal query
Dummy example:
$result = mysql_query($query);
while($row = mysql_fetch_array($result)){
$row[$fieldName] = $this->someFunction($row['id']);
}
mysql_data_seek($result, 0);
In current example it doesn't works. The changing that I made to $row doesn't save. Is it possible to realise such idea, about changing $result?