So I have a form for my register system. When the form submits and there\'s errors, (like \'Enter a username first!\' or \'You must provide a password!\') it successfully refres
This is probably because you refer to some data as $_POST[username], instead of $_POST['username'], change that.