| 
 Posted by Jerry Stuckle on 07/15/06 12:11 
vito wrote: 
> how to achieve that? it seems php doesn't support it well for a C  
> programmer? 
>  
> i hope to use something like: 
>  
> a[$i][0]; 
>  
> a[$i][1]; 
>  
> a[$i][2];  
>  
>  
 
The only problem i see is it should be 
 
$a[$i][0]; 
$a[$i][1]; 
$a[$i][2]; 
 
Works as long as $a and $a[$i] are defined as arrays. 
 
   $a = array(); 
   $a[$i] = array(); 
 
 
--  
================== 
Remove the "x" from my email address 
Jerry Stuckle 
JDS Computer Training Corp. 
jstucklex@attglobal.net 
==================
 
[Back to original message] 
 |