This code is used for admin and User Interface which was built for uploading book name , author name , tittle , image and store in database.Whole code is written in php.Moreover, manupulation of data can be done
sql to create database
Create Book table
CREATE TABLE book ( book_id VARCHAR(100) PRIMARY KEY , title VARCHAR(50) NOT NULL, author VARCHAR(50) NOT NULL, price VARCHAR(30) NOT NULL, image VARCHAR(100), category VARCHAR(50), description VARCHAR(10000) NOT NULL )
CREATE TABLE book_details_more( book_id VARCHAR(100) PRIMARY KEY,author VARCHAR(50) NOT NULL, first_co_author VARCHAR(500),publisher VARCHAR(500),stock int(255))
Create user-delivery section where admin will see how many have ordered
CREATE TABLE user_deliver ( id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY, full_name VARCHAR(30) NOT NULL, book_name VARCHAR(500) NOT NULL, street1 VARCHAR(30) NOT NULL, street2 VARCHAR(50), city VARCHAR(50), zip VARCHAR(50), toal_cost_pass VARCHAR(50), stripeToken VARCHAR(50), stripeEmail VARCHAR(50), hash_token_for_client_for_ship VARCHAR(50), time TIMESTAMP DEFAULT CURRENT_TIMESTAMP )
Create admin section
CREATE TABLE mail_change( id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY,user_id VARCHAR(100),new_email VARCHAR(50) NOT NULL, token VARCHAR(500))
CREATE TABLE admin ( id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY, user VARCHAR(30) NOT NULL, password VARCHAR(100) NOT NULL )
Then add admin user and password as per client demand manually
The username and password is admin & admin respectively (Hashed in md5 )
INSERT INTO admin (user,password) VALUES ('admin', '21232f297a57a5a743894a0e4a801fc3');
Set the email address for localserver
Create a Database first_database_for_check
Run this sql query
CREATE TABLE check_after_signup ( id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY, username VARCHAR(30) NOT NULL, email VARCHAR(30) NOT NULL, password VARCHAR(100) NOT NULL, hash VARCHAR(50), type VARCHAR(50), Nickname VARCHAR(50), time TIMESTAMP DEFAULT CURRENT_TIMESTAMP )
Then u ready to go
sql to create password_reset databse
CREATE TABLE password_reset_temp ( id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY,email VARCHAR(30) NOT NULL, expDate VARCHAR(30) NOT NULL)
sql to create database first create a players database then run sql query
CREATE TABLE users ( id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY,username VARCHAR(30) NOT NULL, email VARCHAR(30) NOT NULL, password VARCHAR(100) NOT NULL, nickname VARCHAR(50), password_hash VARCHAR(100), bio VARCHAR(50) )
Run the .bat file in schedule task in every 5 minute so the token get expired
This is a ecommerce website repo
This is a web app for shopping online (Book store)
Create a database first
sql to create database first create a password_reset database then run sql query
CREATE TABLE password_reset_temp ( id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY, email VARCHAR(30) NOT NULL, expDate VARCHAR(30) NOT NULL )
Also user your stripe api-key and add it in config.php file
$publishablekey = "";
$secretkey = "";
And also change the receiver email from ***
"contact_without_login_index.php"
$to_email = 'receiver-email@gmail.com';
"mail_sent.php"
$to_email = 'sender-email@gmail.com';
For Admin Interface:
login Panel
Admin Insert Details
Admin Delete Details
Admin Edit Details
Admin Order Details
For User Interace :
Register ACC
Register Confirm
Interface
Reviews Interface
Reviews Details
Reviews Books
One reviews
User Panel
Reviews Cart
Information Details
Card Info
Admin Reset pass Email
Admin Reset pass Final
User Password Reset
User Reset pass Email
User Reset pass Final
Eamil confirm
Full Reviews
Reviews User Details
Track and Cancle Order