简体   繁体   中英

User Registration and login operations Immediately after that

I want to implement a php file that can to do the User Registration and login operations Immediately after that.

I think the code structure should be as follows:

Registration and login.php

<?php
session_start();
if($_SERVER["REQUEST_METHOD"] == "POST") {
$username = $_POST['username'];
$password = $_POST['password'];
//Check the fields.If they are correct
//Check if the username exists and password is correct
$_SESSION['login_user']=$username;
//Go to the profile.php.
//But if the username does not exists, insert the username and password in table}

else {mysql_close($connection);}

Can the code above work well and is it a good answer for my question?

That is also a good approach ...

first check if user with that username/email already exists

If exists, then match username and password, and create session for that user

If not, then create the user and then create a session (that means user is logged in too) for that user right there

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM