php - Creating a custom user profile page upon user registration? -
i have registration form user enters name, email, username, password, etc. information collected , stored in database. after user clicks submit, want them redirected profile page. url on profile example.php?id=33, how go doing this?
how go creating actual dynamic page them? know have create 1 php page , style sheet, , apply pages, how create system right after registration, user directed profile? using php , mysqli. i'd more happy if you'd link me tutorials or if share knowledge because i've looked everywhere , couldn't find looking for.
one way of doing redirect use php header function send location header browser:
header('location: '.$url);
where $url user profile page. work if have not sent prior output after managing registration request.
Comments
Post a Comment