I have elements in an array that need to be modified (unfortunatly they are not in order). I am using $row = mysql_fetch_array , so I call the elements with $row["Name"].
Is there a way to effitiently modify these elements (ie- a loop) rather than for each element copy write the same code out? (I can't use foreach because it copy's the array, so it won't modify the origional array)
Any help would be greatly appretiated.
Thanks