Undeclared function 'x'

Sample code:

//...
if (w_check($x, $y))            // Undeclared function 'w_check'
    echo "You can't do that";
//...

You called some function but its definition can't be found. This may be the case if you forgot to include some file, or you simply don't have function with that name.