Having a real problem with this:
$ForumName="AAPL"
I have a large amount of data, this is one of the items:
$AAPL=array(19.69,0.56,"4,894,500","96,362,916","6,798,266,400","6,050,122,400");
I want the thing to make another variable (ie $ticker) that Equals the array:
ie: $ticker=$ForumName // $AAPL -
echo $ticker[0] // 19.69
Instead I get 'A' as the result
HELP!!!
I can't say $ticker=$AAPL as the page is always changing. I have to say $ticker is $ForumName (or $$ForumName) if that's possible