simple user authentication system
v.0.0.1
PHP, HTML, JQuery, Ajax, JSON, Bootstrap, CSS 및 MySQL로 구축 된 기본 사용자 등록 및 로그인 시스템. 이 프로젝트는 등록, 로그인 및 세션 관리를 포함하여 사용자 인증을 처리하는 간단하면서도 안전한 방법을 보여줍니다.
주제 : php , mysql , ajax , json , bootstrap , jquery , css , user authentication , user registration , user-login , session management

저장소 복제 :
git clone https://github.com/yourusername/simple-user-authentication-system.git프로젝트 디렉토리로 이동하십시오.
cd simple-user-authentication-system데이터베이스 설정 :
user_authentication 이라는 MySQL 데이터베이스를 만듭니다.mysql -u yourusername -p user_authentication < db/database.sql데이터베이스 구성 업데이트 :
config.sample.php config.php 로 복사합니다. cp config.sample.php config.phpconfig.php 열고 데이터베이스 구성 세부 정보를 업데이트하십시오.개발 서버 시작 :
php -S localhost:8000응용 프로그램 액세스 :
http://localhost:8000 으로 이동하십시오.다음은 간단한 사용자 인증 시스템 응용 프로그램을위한 기본 파일 구조입니다.
simple-user-authentication-system/
│
├── backend/
│ └── index.php
│
├── assets/
│ ├── css/
│ │ └── style.css
│ └── js/
│ └── script.js
│
├── db/
│ └── database.sql
│
├── includes/
│ ├── config.sample.php
│ ├── db.php
│ ├── login.php
│ ├── logout.php
│ └── register.php
│
├── src/
│ ├── login.php
│ ├── logout.php
│ └── register.php
│
├── index.html
├── register.html
├── login.html
├── README.md
└── .gitignore