That's rather confusing. Are you using Javascript at all?
If you post the code you use for your register page, it'll be easier for us to see what's going on.
It's my job to help the next generation, and set a good example for them. And for that I'll gladly lay down my life.
No no no...You want it done ONLY when the user submits the form, correct?
Use an argument to determine whether the form has been submitted or not.
if($_POST[submit]){
//your code here
}
By using that bit of code, it checks to see if there is a value of the submit button, and the only way to get the value of it is to submit it.