Thanks. I got it with an array..
Here's some of the array:
$RDOT=array(0.10,0.00,"22,000","2,200",0,0);
$RNWK=array(8.25,-0.41,"1,397,000","11,525,250","1,301,025,000","702,075,000");
$RVSN=array(10.19,-0.81,"234,000","2,383,992","189,496,800","38,714,400");
// NOTICE $RNWK
$ticker=$RNWK;
echo "$ticker[5] should be the float cap 702 million<br>";
echo "$ticker[4] should be the mkt cap 1.3 billion<br>";
echo "$ticker[3] should be the traded 11.53 million<br>";
echo "$ticker[2] should be the volume 1.3 million<br>";
echo "$ticker[1] should be the float cap -0.41<br>";
echo "$ticker[0] should be the close 8.25<br>";
It shows the following:
702,075,000 should be the float cap 702 million
1,301,025,000 should be the mkt cap 1.3 billion
11,525,250 should be the traded 11.53 million
1,397,000 should be the volume 1.3 million
-0.41 should be the float cap -0.41
8.25 should be the close 8.25
Alas...another satisfied customer....Thanks to you and PHP builder!! And thanks to PHP!