| 
	
 | 
 Posted by kirke on 10/18/06 23:08 
I have a code with following data format 
 
 
$datay = array( 
    34,42,27,45, 
    55,25,14,59, 
    38,49,32,64); 
$p1 = new StockPlot($datay); 
 
 
However, I want to change it to query format. 
That is, 
 
$sql_A = 'SELECT dtDateTime FROM  ~~  WHERE ~~~ '; 
$sql_B = 'SELECT dtDateTime FROM  ~~  WHERE ~~~ '; 
$sql_C = 'SELECT dtDateTime FROM  ~~  WHERE ~~~ '; 
 
After executing $sql_A,B,C Query, I can get an data A,B,C , 
respectively. 
 
A = 34, 42, 27, 45 
B = 55, 25, 14, 59 
C = 38, 49, 32, 64 
 
In that case, How can I write change the code?  Moreover, actually 
length of A,B,C are all different. 
Is it possible? Or should I change the StockPlot function? 
 
Thank you!!!!
 
[Back to original message] 
 |