Here's a simple question for you PHP gurus out there.
I've got a 2-dim array like this:
$sMasterX[$a][lastprice]
There are 100 entries and 20 fields in each entry in the array.
I want to move one entry into it's own single dim array.
Can I do this: $sMaster = $sMasterX[0];
so that $sMaster[lastprice] will contain the correct data (and the other fields too?).
Sounds ridiculous but I can't test this out on the machine I'm on now and am looking for a quick answer... How can I move a whole array into another array??? Thank you.