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.


Reply via email to