is it possible to retrieve the fieldname that is passed on to a function instead of the value ??
if I have a function like
and I use it like
filledin($name1);
filledin($name2);
filledin($name3);
can I also retrieve the name of the variable (name inside the function besides the value ??
if I have a function like
Code:
function filledin($naam){
if ($naam <> "") {return 0;} else {return 1;}
}
and I use it like
filledin($name1);
filledin($name2);
filledin($name3);
can I also retrieve the name of the variable (name inside the function besides the value ??