hi, i got 2 functions i need to work with..
validate_empty_fields($fields="")
{
....
}
checkQty($temp)
{
if(validate_empty_fields($temp)
return true;
else
return false;
}
but i keep getting the error (highlighted in red) saying "Call to undefined function" why??😕