will that call the full code or will I need to activate it in some way?
require(), require_once(), include(), or include_once() will all act as if you took the code in the file you're including and copied it right into your script, so yes, it will "call the full code".
require() and require_once() will cause your script to exit if the file is not found or isn't readable for some reason (which is probably what you want for user validation functions). I recommend using require_once() unless you have a reason not to, because if you accidentally include the same file twice, you will get errors.
include() and include_once() act the same way but won't cause your script to exit if the files aren't found.
Jim Keller
http://jim.centerfuse.net/projects/