Is anyone experience slow refreshing rate on login? I think the current why I have it logged in is inefficient but I don't know how to do a better one. Currently, I have it off $_POST[] to be saved under $_SESSION[] and meta refresh the page to log the user in but it is way to slow. Is there a better way?
Why don't you just redirect the page in PHP, using something like: header('Location: http://www.example.com/loggedin.php'); PHP: That will redirect automatically, rather than waiting for a new page to load and then however long you have set the meta refresh value to be.
i never have experienced of slow Refereshing rate at login page. please make your code clean and and use header functiont to redirect when the user successfully logged in to a page where you want to redirect... header('location: http://www.domainname.com/welcome.php');