Re: Basic question about incuding files and funcitons
Posted by Samuel on 11/16/99 11:28
If you're calling it as
check($message)
you need to change the declaration of the function to
function check ($message)
{
....
}
and remove the "return check()" line from the separate page where you
have the function. Also, it would help if you told us exactly what
errors you are getting.