Topic: Function question
Just a quickie. If one creates a function like follows:
function test_function($value = false)
{
if ($value)
{
[run this command]
}
}
Would that command only be executed if some value was passed to that function within the ()?
Cheers.