On Tuesday 05 November 2002 23:56, Francisco Vaucher wrote: > This doesn't work. I need to get some variables values out of the function. > Is there a way to make te variables defined in the function 'global' ? So I > can use them after the function call.
Declare them as global:
<?
doo(123);
echo $dah;
function doo($param) {
global $dah;
$dah = $param * $param;
}
?>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

