Hello, In my code I would like to call a function, and if that function does not exists, NOT to have a error message. How could I suppress the error message that the function does not exist ?
put @ in front of the call to the function
so @function() will not return an error
if (function_exists('myFunction')) { $myVal=myFunction(); }
-- Rich