An open API service indexing awesome lists of open source software.

https://github.com/naresh-chandanbatve/imp_image_store


https://github.com/naresh-chandanbatve/imp_image_store

database hacktoberfest hacktoberfest-accepted hacktoberfest2022 mysql php sql

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

          

# imp_Image_Store

### Image store web app where we can store our 16 imp images with password protection


## teck used
1) php
2) MySQL DBMS
3) html
4) CSS
5) javaSript




### Login Page


### Dashboard


### Upload Page


### My Uploads



## Steps to set up project locally
1) first get the code using either zip or running
```bash
git clone https://github.com/Naresh-chandanbatve/imp_Image_Store.git
```
2) install any server like apache or xamp.
3) install MySQL database.
4) inside MySQL database create database of name 'sql_auth'
5) then run the following SQL query
```bash
create table user (
ID int(11) PRIMARY KEY AUTO_INCREMENT,
Name varchar(25),
Mail varchar(30),
Username varchar(25),
profileurl varchar(200) NULL DEFAULT="images/profile-logo.jpg",
Password varchar(15),
uploadindex int(70) );
```
6) Don't forget to change the Host Name, Database User, Database Password And Database Name in all the files which includes following line
```bash
mysqli_connect('localhost','root','Naresh@12', 'sql_auth');
```
7) now start the server
8) make sure MySQL is running properly
9) open browser and enter the localhost with respected port number.
10) now one more important step... enjoy :)

## OpenSource
This project is a open source project. feel free to make contributions to this project by opening issues, adding new features and fixing the bug.