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
- Host: GitHub
- URL: https://github.com/naresh-chandanbatve/imp_image_store
- Owner: Naresh-chandanbatve
- Created: 2022-02-22T12:17:43.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-02-20T10:56:36.000Z (over 3 years ago)
- Last Synced: 2025-07-30T12:35:49.755Z (11 months ago)
- Topics: database, hacktoberfest, hacktoberfest-accepted, hacktoberfest2022, mysql, php, sql
- Language: PHP
- Homepage:
- Size: 27.1 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: changepass.php
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.