its is defined in my register.php file and i was thinking that the includes at the top would take care of that linking of it.
I was just reading about the script src= and it says that if you use that then your link file cannot have any html in it, but it does.. i will keep reading but im wondering if the function Validate_FrmRegister() is inside of my register.php file how do i link to it from another file because that register.php does have html and php in it..
here is what im trying, since it still processes and updates the files fine then im thinking all i need to do is to clear the flag because it processes fine. so i can either remove the call from the form command for it or i can just put this in my current file at the bottom... which is best you think (if this thinking is even correct lol)
<script style="text/javascript>
function Validate_FrmRegister()
{return(true);
}
</script>
what im thininking is that it will go to this function, return true and then just have a green flag and be fine. or do i even need the return at all can i just leave it as {}, not sure