the example I have below.. I'm able to get working using the 'echo' 
command.
But I would like to know how to format the same using the 'print' 
command.
I am familiar with both. but with this one instance I am not sure how 
to format the print command correctly to get the same results as the 
echo command. Any suggestions would be appreciated.

        $variable1[0]="one";
        $variable2[0]="two";
        $variable3[0]="three";
        $variable4[0]="four";
        
        $j=1;
        while($j<5){    
                echo ${"variable"."$j"}[0];
                $j++;
        }


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to