Ok lets see I have the following two functions one calls the other
Function a (&$myref) {
..something... then calls function b
b($myref);
}
function b (&$myref) {
something
}
a($myref);
is the reference by passing in function b legal???
Carl Furst
Chief Technical Officer
Vote.com
50 Water St.
South Norwalk, CT. 06854
203-854-9912 x.231
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

