Posted by micha on 11/05/99 11:16
i have the following code:
function some_function($argument)
{
validate_arg();
//more code
}
function validate_arg()
{
//this function validates the argument of some_function()
}
is it possible for validate_args() to automatically read the argument of
some_function() or do i have to note the argument in the brackets in any
case?
thx, micha
--
[Back to original message]
|