I have a form in one file "signin.php", and then all my backend is in "php/signin_back.php"
If i have a form
<form action="php/signin_back.php" method="post">
<input type="text"/>
<!-- more stuff !-->
</form>
When I log in, the form directs to php/signin_back.php to process all the good stuff, but it kind of lags so it goes to that page for like 1 second, meaning I'm able to read the url site. Whats a better way to do it so the user logging in doesn't see any URL backend information... Would it be better if I have all my backend mysql database stuff in the same file as my form?
Thanks