Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/itssodope01/database-web-interaction
Interacting with database through web using PHP, JavaScript, CSS, HTML
https://github.com/itssodope01/database-web-interaction
Last synced: 6 days ago
JSON representation
Interacting with database through web using PHP, JavaScript, CSS, HTML
- Host: GitHub
- URL: https://github.com/itssodope01/database-web-interaction
- Owner: itssodope01
- License: mit
- Created: 2024-02-05T00:34:09.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-08-12T15:53:27.000Z (3 months ago)
- Last Synced: 2024-08-12T18:10:32.114Z (3 months ago)
- Language: PHP
- Size: 1.02 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Database-Web-Interaction
This project demonstrates interaction with a database through a web interface using PHP, JavaScript, CSS, and HTML. It supports CRUD (Create, Read, Update, Delete) operations on a SQL database for managing courses, lecturers, institutions, and participants.
## Features
- Add new participants
- Change grades of participants
- Update participant positions
- Remove participants
- Search for records (courses, professors, institutions, participants)
- View available courses, lecturers, and institutions## Database Structure
The database consists of the following tables:
1. institutions
2. lecturers
3. courses
4. positions
5. participants
6. course_grading## Local Setup
### Prerequisites
- MySQL (download from Oracle website)
- VSCode
- PHP (download from official PHP website)### Installation
1. Install MySQL and PHP.
2. Add MySQL and PHP to your system's PATH variable for easier command-line access.### Database Setup
1. Open MySQL in the source folder (where you stored the .sql files):
```
mysql -u [username] -p
```(The default username is generally 'root')
2. Create and populate the database:
```sql
source Database_create.sql;
source insertdata.sql;
```3. Create a table for users and passwords:
```sql
USE database_A;
CREATE TABLE users (
id INT AUTO_INCREMENT PRIMARY KEY,
username VARCHAR(60) NOT NULL UNIQUE,
hashed_password VARCHAR(255) NOT NULL
);
```### Configuration
1. Update `db_connection.php` with your database name and password (Database name: database_A).
### Running the Application
1. Open a terminal in the main PHP project folder.
2. Start the PHP development server:
```
php -S localhost:8000
```
3. Open a web browser and go to:
- http://localhost:8000/index.php (Login Page)
- http://localhost:8000/pritam.php (Main Page, requires login)### Adding Users
1. Modify `hashpass.php` with your desired username and password.
2. Run the script:
```
php hashpass.php
```
Default credentials: Username: Pritam, Password: OpenSesame## File Structure
Ensure all files are saved in their proper locations within the project folder. Do not save `hashpass.php` in the main project folder.
## Usage
After logging in, you can perform the following operations:
1. Add a new participant
2. Update participant grades
3. Change participant positions
4. Remove participants
5. Search for specific records
6. View available courses, lecturers, and institutions## Notes
- The login page is `index.php`
- The main page is `pritam.php`
- Always use secure practices when handling passwords and sensitive data.## Contributing
Feel free to fork this project and submit pull requests for any improvements or bug fixes.
## License
MIT License