Francisco Vaucher wrote:
hey, don't answer if you don't want to... leave the 'ugh' thing...
>John Nichel wrote:
> Ugh. Read the in the manual about variable scope, and how to call a
> function. It's all there. To get you started...
>
> print_r ( test_func() );
>
> Francisco Vaucher wrote:
>
>> Hi people,
>>
>> is there a way to retrieve an array from a function ?
>>
>> like:
>>
>> <?php
>>
>> test_func($param1, $param2) {
>>
>> //code
>>
>> $test = array ("ASD" => "Test1", "ASDF" => "Test2");
>> return $test;
>> }
>>
>> //outiside de function
>> echo $test; // <----- the array
>>
>> ?>
>>
>> This doesn't work. So, any clue ?
>>
>> Regards and tks in advance!
>>
>> f.
>>
>
>
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

